I know how to do that just fine. I just can't get the script to work right it self. I do something like this.
randomvar = $game_virtualdb.data_actors
randomvar[1].name
and I get good old errors. Too tired to see what they are right now. I just want to know what im doing wrong from these intructions.
------------------------------------------------------------------------------
# * Instrucions :
#
# Place The Script Below the SDK and Above Main.
#
# ** General Guideline For Modifing Database **
#
# Retrieve Modifed Hash From Virtual Database
# - object = $game_virtualdb.data_<object>
#
# Modify the Object (It is a hash, so all properties of hash remain)
# - object[index] = <something>
#
# Send Modified Hash Back to Virtual Database
# - $game_virtualdb.data_<object> = object
#------------------------------------------------------------------------------
P.s this is from the Virtual Database script to answer your question (though its in the title of the thread)