[Help] Few things

Newbie Spellweaver
Joined
Jun 20, 2008
Messages
57
Reaction score
0
First off I was planning on releasing codes on new armor but I ran into a problem with it. Right now I only have the trial pauldron for priest in but there is a problem, it says 'unconfirmed nation' and I can't equip it. Does anyone know how to fix this or is it all just trash?

Second, what are the values to put in Helis and the 72 staff skill for mages? I don't care if it isn't in code, I will code it myself. ( I can't seem to get either skill to work.)
 
Last edited by a moderator:
Re: Few things

1) Go to your item_org_us.tbl and compare your (7th armor to your 6th armor)/dragon flight to your shell. I remember fixing this problem because I had it to, so I compared it to the rows coding for shell. I think it was column 9, 10, or 12 that was defective, and you had to change the values of that column for all the 7th armor to 0. Just compare it to Shell to verify the row, that's what I did.

2)
Code:
insert into magic values ('110572','Fire Staff','Fire Staff','0','0','0','0','102','7','72','1105','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('110672','Ice Staff','Ice Staff','0','0','0','0','211','7','72','1106','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('110772','Light Staff','Light Staff','0','0','0','0','313','7','72','1107','300','0','11','0','0','0','60','1','3','10','1','0')
insert into magic values ('210572','Fire Staff','Fire Staff','0','0','0','0','102','7','72','1105','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('210672','Ice Staff','Ice Staff','0','0','0','0','211','7','72','1106','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('210772','Light Staff','Light Staff','0','0','0','0','313','7','72','1107','300','0','11','0','0','0','60','1','3','10','1','0')

I don't have a skill magic main to provide to assist you with making this work. I think you also have to add it to MAGIC_TYPE3 table, but I don't have the query to put it there, either.
 
Re: Few things

Ok thanks omega, btw I'm gamefreak on msn, never log anymore though because I had to reformat PC and I haven't gotten around to downloading it...
 
Re: Few things

Correction to your code omega. It won't work otherwise :jester:

Code:
insert into magic values ('110572','Fire Staff','Fire Staff','Fire Staff','0','0','0','0','102','7','72','1105','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('110672','Ice Staff','Ice Staff','Ice Staff','0','0','0','0','211','7','72','1106','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('110772','Light Staff','Light Staff','Light Staff','0','0','0','0','313','7','72','1107','300','0','11','0','0','0','60','1','3','10','1','0')
insert into magic values ('210572','Fire Staff','Fire Staff','Fire Staff','0','0','0','0','102','7','72','1105','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('210672','Ice Staff','Ice Staff','Ice Staff','0','0','0','0','211','7','72','1106','300','0','11','0','0','0','100','1','3','10','1','0')
insert into magic values ('210772','Light Staff','Light Staff','Light Staff','0','0','0','0','313','7','72','1107','300','0','11','0','0','0','60','1','3','10','1','0')
 
I still can't get the armor to work.. it just says unconfirmed everytime -.-

Almost have helis working, it consumes mana but no damage
 
Nope, you gotta funky around with the item_upgrade table. For some reason, I thought it was supposed to upgrade like shell. Because, when I added Exceptional Weapons, they were still upgradeable. Maybe it has something to do with the 5 in the front of its extension. Maybe codes for more rows in the ITEM_UPGRADE table.
 
Back