Out of curiosity, I was wondering how one would go about adding say... spells 1-287 automatically to every character. (I have a long winded reason for wanting to do this, but it's nearly 6:30am ; ; haha or I'd totally try to explain!)
I'm not very good with scripting, hell I know nothing of scripting lol but I did dig up on the old site a script for adding all maps to each new character:
Code: Select all
-- ADD ALL MAPS
-- MAIN NATIONS SANDY BASTOK WINDURST JEUNO
player:addKeyItem(385);
player:addKeyItem(386);
player:addKeyItem(387);
player:addKeyItem(388);
-- ITEMS 389 to 447
z = 389;
while z <= 447 do
player:addKeyItem(z);
z = z + 1;
end
end;
Code: Select all
-- ADD ALL SPELLS
-- BLACK WHITE
player:addSpell(1);
player:addSpell(2);
player:addSpell(3);
player:addSpell(4);
-- ITEMS 1 to 297
z = 5;
while z <= 287 do
player:addSpell(z);
z = z + 1;
end
end;
Thank you so much for your time and all your guys' hard work!