Jezu Posted November 8, 2016 Posted November 8, 2016 (edited) Good day to all! I do have a request if ever possible. This PVP Script request is like a Rank system as you may know in Dota2/League of Legends. So shall I begin? PVP Script: • There are 2 rooms (ability to add more rooms..) - Free for All - No Potions • PVP Script Function: - If a player get 1 killed, +20 points. - if a player died, -20 points. - if a player reached less than 20 points or 0, the player who will kill him will get no points. (to avoid feeding points). • PVP Ladder - Maybe a top 10 or 20 players with their current points. Hopefully, someone can post or help this script. Thanks a lot! Edited November 8, 2016 by Jezu Quote
0 Emistry Posted November 11, 2016 Posted November 11, 2016 2. - script Sample#pvp_mmr -1,{ OnPCDieEvent: if ( getcharid(3) != killerrid && PVP_POINTS > 0 ) { .@amount = (( PVP_POINTS < 20 ) ? PVP_POINTS : 20 ); if ( .@amount ) { PVP_POINTS -= .@amount; dispbottom "You lose "+.@amount+" Point(s)."; } if ( attachrid( killerrid ) ) { PVP_POINTS += .@amount; dispbottom "You gained "+.@amount+" Point(s)."; } } end; } 1 Quote
0 Jezu Posted November 11, 2016 Author Posted November 11, 2016 (edited) 42 minutes ago, Emistry said: 2. - script Sample#pvp_mmr -1,{ OnPCDieEvent: if ( getcharid(3) != killerrid && PVP_POINTS > 0 ) { .@amount = (( PVP_POINTS < 20 ) ? PVP_POINTS : 20 ); if ( .@amount ) { PVP_POINTS -= .@amount; dispbottom "You lose "+.@amount+" Point(s)."; } if ( attachrid( killerrid ) ) { PVP_POINTS += .@amount; dispbottom "You gained "+.@amount+" Point(s)."; } } end; } I'll try this now. Quote Edited November 11, 2016 by Jezu Quote
0 Jezu Posted November 18, 2016 Author Posted November 18, 2016 On 11/11/2016 at 11:37 AM, Emistry said: 2. - script Sample#pvp_mmr -1,{ OnPCDieEvent: if ( getcharid(3) != killerrid && PVP_POINTS > 0 ) { .@amount = (( PVP_POINTS < 20 ) ? PVP_POINTS : 20 ); if ( .@amount ) { PVP_POINTS -= .@amount; dispbottom "You lose "+.@amount+" Point(s)."; } if ( attachrid( killerrid ) ) { PVP_POINTS += .@amount; dispbottom "You gained "+.@amount+" Point(s)."; } } end; } Hi @Emistry ! Can you make a simple ladder like top 10 or 20's? Quote
0 Sour- Posted November 21, 2016 Posted November 21, 2016 Do all players start at 0 points? If so, how can they earn points when they can't gain killing 0-point enemy? Quote
Question
Jezu
Good day to all!
I do have a request if ever possible.
This PVP Script request is like a Rank system as you may know in Dota2/League of Legends. So shall I begin?
PVP Script:
• There are 2 rooms (ability to add more rooms..)
- Free for All
- No Potions
• PVP Script Function:
- If a player get 1 killed, +20 points.
- if a player died, -20 points.
- if a player reached less than 20 points or 0, the player who will kill him will get no points. (to avoid feeding points).
• PVP Ladder
- Maybe a top 10 or 20 players with their current points.
Hopefully, someone can post or help this script.
Thanks a lot! 
Edited by Jezu4 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.