Tales Posted May 5, 2015 Posted May 5, 2015 How? How to earn cash when kill other player in "Example" map? Quote
ocelote Posted May 6, 2015 Posted May 6, 2015 OnPCKillEvent: if(strcharinfo(3) != "yourmap") end; #CASHPOINTS += 1; end; Quote
Elsa Mist Posted May 9, 2015 Posted May 9, 2015 (edited) How? How to earn cash when kill other player in "Example" map? - script PvPPoint -1,{ OnPCKillEvent: if ( strcharinfo(3) == "YourMapName" ) { set #PvPPoint,#PvPPoint+1; dispbottom "You have gained 1 PvP Point. Total is "+#PvPPoint+" PvP Point(s)."; } end; } Edited May 9, 2015 by Elsa Mist Quote
Emistry Posted May 9, 2015 Posted May 9, 2015 How? How to earn cash when kill other player in "Example" map? - script PvPPoint -1,{ OnPCKillEvent: if ( strcharinfo(3) == "YourMapName" ) { set #PvPPoint,#PvPPoint+1; dispbottom "You have gained 1 PvP Point. Total is "+@PvPPoint+" PvP Point(s)."; } end; } should be dispbottom "You have gained 1 PvP Point. Total is "+#PvPPoint+" PvP Point(s)."; Quote
Elsa Mist Posted May 9, 2015 Posted May 9, 2015 How? How to earn cash when kill other player in "Example" map? - script PvPPoint -1,{ OnPCKillEvent: if ( strcharinfo(3) == "YourMapName" ) { set #PvPPoint,#PvPPoint+1; dispbottom "You have gained 1 PvP Point. Total is "+@PvPPoint+" PvP Point(s)."; } end; } should be dispbottom "You have gained 1 PvP Point. Total is "+#PvPPoint+" PvP Point(s)."; Thanks! Quote
Question
Tales
How? How to earn cash when kill other player in "Example" map?
4 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.