froznkamui
Member
as we know,database for item,weapon,armor limit is 999
but,is there possible to create new database from the script ??
but,is there possible to create new database from the script ??
$data_skills[1000] = RPG::Skill.new
$data_skills[1000].id = 1000
$data_skills[1000].name = "Cross Cut"
$data_skills[1000].icon_name = "050-Skill07"
$data_skills[1000].description = "Fighter's special move. More effective to undeads."
$data_skills[1000].scope = 1
$data_skills[1000].animation1_id = 1
$data_skills[1000].animation2_id = 67
$data_skills[1000].sp_cost = 100
$data_skills[1000].power = 20
$data_skills[1000].atk_f = 100
$data_skills[1000].eva_f = 100
$data_skills[1000].str_f = 100
$data_skills[1000].pdef_f = 100
$data_skills[1000].mdef_f = 0
$data_skills[1000].element_set = [9]
Actually, this is possible.you can't use the event commands to access any id over 1000 (since the database max is 999) so then you will have to use the call script event command to access them