pinyinhuo Posted April 23, 2017 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 54 Reputation: 0 Joined: 12/26/12 Last Seen: April 30, 2017 Share Posted April 23, 2017 Hello, i would like to request a script where, when you kill a player in a specific map, you gain tcg/coins. Hoping you could help me out! Thanks! Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted April 23, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted April 23, 2017 - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere" ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } 1 Quote Link to comment Share on other sites More sharing options...
0 pinyinhuo Posted April 23, 2017 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 54 Reputation: 0 Joined: 12/26/12 Last Seen: April 30, 2017 Author Share Posted April 23, 2017 32 minutes ago, Cyro said: - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere" ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } @Cyro , thanks! ❤️ Quote Link to comment Share on other sites More sharing options...
0 IsabelaFernandez Posted August 17, 2018 Group: Members Topic Count: 146 Topics Per Day: 0.06 Content Count: 355 Reputation: 8 Joined: 04/16/18 Last Seen: October 21, 2024 Share Posted August 17, 2018 On 4/22/2017 at 11:22 PM, Cyro said: - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere" ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } How do I add other maps? thanks! Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted August 19, 2018 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 August 19, 2018 - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && (strcharinfo(3) == "yourmanonamhere" || strcharinfo(3) == "yourmanonamhere2") ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } or - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere" ) { getotem 7227,1; dispbottom "One Tcg card"; } else if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere2" ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } Quote Link to comment Share on other sites More sharing options...
0 myserver Posted August 27, 2018 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 45 Reputation: 0 Joined: 08/27/18 Last Seen: October 23, 2018 Share Posted August 27, 2018 - script pvp_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere" ) { getotem 7227,1; dispbottom "One Tcg card"; } else if ( getcharid(3) != killedrid && strcharinfo(3) == "yourmanonamhere2" ) { getotem 7227,1; dispbottom "One Tcg card"; } end; } this script how to random player to kill? Quote Link to comment Share on other sites More sharing options...
Question
pinyinhuo
Hello,
i would like to request a script where, when you kill a player in a specific map, you gain tcg/coins. Hoping you could help me out! Thanks!
Link to comment
Share on other sites
5 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.