LearningRO Posted June 6, 2013 Group: Members Topic Count: 107 Topics Per Day: 0.02 Content Count: 778 Reputation: 73 Joined: 02/10/12 Last Seen: 10 hours ago Share Posted June 6, 2013 (edited) hi i have a problem with mya Script PVP ladder i got error like this [Error]: script:op_2: invalid data for operator C_LOR [Debug]: Data: number value=1 [Debug]: Data: string value="pvp_n_6-5" [Debug]: Source (NPC): job_pvp (invisible/not on a map) how to fix that? this is my script, i use anniruru pvp ladder OnPCLoadMapEvent: if ( strcharinfo(3) != "guild_vs3" || "pvp_n_6-5" || "pvp_y_2-2" || "prtg_cas01" || "aldeg_cas03" || "payg_cas03" || "payg_cas03" || @pvpl_kills || @pvpl_deaths ) end; query_sql "select kills, deaths from pvpladder where char_id = "+ getcharid(0), @pvpl_kills, @pvpl_deaths; end; } Edited June 6, 2013 by melv0 Quote Link to comment Share on other sites More sharing options...
Luciar Posted June 6, 2013 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 177 Reputation: 21 Joined: 01/31/12 Last Seen: March 8, 2020 Share Posted June 6, 2013 if ( strcharinfo(3) != "guild_vs3" || "pvp_n_6-5" || "pvp_y_2-2" || "prtg_cas01" || "aldeg_cas03" || "payg_cas03" || "payg_cas03" || @pvpl_kills || @pvpl_deaths ) end; Change to: if ( strcharinfo(3) != "guild_vs3" || strcharinfo(3) != "pvp_n_6-5" || strcharinfo(3) != "pvp_y_2-2" || strcharinfo(3) != "prtg_cas01" || strcharinfo(3) != "aldeg_cas03" || strcharinfo(3) != "payg_cas03" || strcharinfo(3) != "payg_cas03" || @pvpl_kills || @pvpl_deaths ) end; 1 Quote Link to comment Share on other sites More sharing options...
LearningRO Posted June 7, 2013 Group: Members Topic Count: 107 Topics Per Day: 0.02 Content Count: 778 Reputation: 73 Joined: 02/10/12 Last Seen: 10 hours ago Author Share Posted June 7, 2013 @luciar Thx luciaar it's work now Quote Link to comment Share on other sites More sharing options...
Question
LearningRO
hi i have a problem with mya Script PVP ladder
i got error like this
how to fix that?
this is my script, i use anniruru pvp ladder
Link to comment
Share on other sites
2 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.