Tales Posted May 5, 2015 Group: Members Topic Count: 163 Topics Per Day: 0.03 Content Count: 319 Reputation: 8 Joined: 02/05/12 Last Seen: January 11, 2016 Share Posted May 5, 2015 How? How to earn cash when kill other player in "Example" map? Quote Link to comment Share on other sites More sharing options...
ocelote Posted May 6, 2015 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 52 Reputation: 7 Joined: 01/02/12 Last Seen: July 3, 2015 Share Posted May 6, 2015 OnPCKillEvent: if(strcharinfo(3) != "yourmap") end; #CASHPOINTS += 1; end; Quote Link to comment Share on other sites More sharing options...
Elsa Mist Posted May 9, 2015 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 387 Reputation: 60 Joined: 10/08/13 Last Seen: July 14, 2022 Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted May 9, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share 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 Link to comment Share on other sites More sharing options...
Elsa Mist Posted May 9, 2015 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 387 Reputation: 60 Joined: 10/08/13 Last Seen: July 14, 2022 Share 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 Link to comment Share on other sites More sharing options...
Question
Tales
How? How to earn cash when kill other player in "Example" map?
Link to comment
Share on other sites
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.