pinyinhuo Posted April 23, 2017 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
0 Cyro Posted April 23, 2017 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
0 pinyinhuo Posted April 23, 2017 Author 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
0 IsabelaFernandez Posted August 17, 2018 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
0 Emistry Posted August 19, 2018 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
0 myserver Posted August 27, 2018 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
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!
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.