Jezu Posted November 8, 2016 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 566 Reputation: 34 Joined: 11/17/11 Last Seen: January 24 Share 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 Link to comment Share on other sites More sharing options...
0 Emistry Posted November 11, 2016 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 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 Link to comment Share on other sites More sharing options...
0 Jezu Posted November 11, 2016 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 566 Reputation: 34 Joined: 11/17/11 Last Seen: January 24 Author Share 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 Link to comment Share on other sites More sharing options...
0 Jezu Posted November 18, 2016 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 566 Reputation: 34 Joined: 11/17/11 Last Seen: January 24 Author Share 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 Link to comment Share on other sites More sharing options...
0 Sour- Posted November 21, 2016 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 42 Reputation: 2 Joined: 05/25/16 Last Seen: May 19, 2017 Share 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 Link to comment Share on other sites More sharing options...
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 JezuLink 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.