PapaZola Posted March 27, 2012 Posted March 27, 2012 anyone tell me? what this error and here 1 more got error bump Quote
Emistry Posted March 27, 2012 Posted March 27, 2012 show your pvpladder script...we dunno what caused this problem in your script without take a look in your script for skill...perhap you edit the skill_db recently ? re-check what you have edit in there Quote
Gepard Posted March 28, 2012 Posted March 28, 2012 Or there is an item that is supposed to give a skill, but the skill id or name is mistyped. Quote
PapaZola Posted April 6, 2012 Author Posted April 6, 2012 (edited) here my pvp ladder script sir emistry http://pastebin.com/CYqqDZMw and i got 1 more this error here my script mvp room http://pastebin.com/uaEyxGGQ Edited April 6, 2012 by PapaZola Quote
ngek202 Posted April 6, 2012 Posted April 6, 2012 (edited) for this error lemme guess you have Beer Hat/Cap? the script on the item_db doesn't seem to have { bonus bFlee2, 5; skill SM_RECOVERY, 3; skill MG_SRECOVERY, 3; } "" on the skill part this should be it: { bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; } Edited April 6, 2012 by ngek202 Quote
PapaZola Posted April 7, 2012 Author Posted April 7, 2012 sir ngek beer hat on my server disable //5416,Beer_Cap,Beer Hat,5,20,,600,,2,,0,0xFFFFFFFE,7,2,256,,18,1,418,{ bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; },{},{} Quote
plankt Posted April 7, 2012 Posted April 7, 2012 For the first error, you can get rid of it by adding "end;" before "L_LadderMove:". It should not, but could, affect the script. end; L_LadderMove: For the "Expected string" errors. You need to give the function the correct type of values for it to work. It expects an integer, gets a string. There's 2 ways to fix it. 1) Typecast, change ex: getstrlen(var) to getstrlen(""+var). You add an empty string to force it to turn in to a string. 2) Check if the function is needed at all. You send an integer in to the function atoi which is used to turn string to integers = not needed. Quote
PapaZola Posted April 7, 2012 Author Posted April 7, 2012 hurmm can try give me a full script? hehehe still waitting my master sir emistry Quote
Question
PapaZola
anyone tell me?
what this error
and here 1 more got error
bump
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.