LearningRO Posted June 6, 2013 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
Luciar Posted June 6, 2013 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
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
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.