PapaZola Posted March 27, 2012 Group: Members Topic Count: 318 Topics Per Day: 0.06 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Share Posted March 27, 2012 anyone tell me? what this error and here 1 more got error bump Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 27, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2371 Joined: 10/28/11 Last Seen: Saturday at 07:13 PM Share 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 Link to comment Share on other sites More sharing options...
Gepard Posted March 28, 2012 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 392 Reputation: 285 Joined: 12/19/11 Last Seen: January 23, 2022 Share 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 Link to comment Share on other sites More sharing options...
PapaZola Posted April 6, 2012 Group: Members Topic Count: 318 Topics Per Day: 0.06 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share 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 Link to comment Share on other sites More sharing options...
ngek202 Posted April 6, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 530 Reputation: 33 Joined: 01/17/12 Last Seen: August 16, 2017 Share 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 Link to comment Share on other sites More sharing options...
PapaZola Posted April 7, 2012 Group: Members Topic Count: 318 Topics Per Day: 0.06 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share 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 Link to comment Share on other sites More sharing options...
plankt Posted April 7, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 130 Reputation: 43 Joined: 12/11/11 Last Seen: July 16, 2017 Share 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 Link to comment Share on other sites More sharing options...
PapaZola Posted April 7, 2012 Group: Members Topic Count: 318 Topics Per Day: 0.06 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share Posted April 7, 2012 hurmm can try give me a full script? hehehe still waitting my master sir emistry Quote Link to comment Share on other sites More sharing options...
Question
PapaZola
anyone tell me?
what this error
and here 1 more got error
bump
Link to comment
Share on other sites
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.