Jump to content
  • 0

Help death Penalty


Microsoft

Question


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.00
  • Content Count:  244
  • Reputation:   17
  • Joined:  11/19/11
  • Last Seen:  

Just a little questions guys, i had a renewal server, mid rate, and i want to implement some leecher thingy. I am done editing the config for death penalty:

 

// When a player dies, how should we penalize them?
// 0 = No penalty.
// 1 = Lose % of current level when killed.
// 2 = Lose % of total experience when killed.
death_penalty_type: 1

and use the command @reloadbattleconf, either restarting the server but when i tried to get killed by mobs, players, my level still not going down. Please anyone can help me? i need this badly.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  218
  • Topics Per Day:  0.05
  • Content Count:  1180
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

Remove the experience penalty if you want and try this out.

 

Peopleperson49

 

- script UponDeath -1,{
OnPCDieEvent:
set BaseLevel,BaseLevel-1;
dispbottom "Your base level has been decreased by 1.";
end;
} 

 

Edited by Peopleperson49
  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   131
  • Joined:  11/10/12
  • Last Seen:  

I think you can't get your level decrease with that even if you die. You can only get your EXP to 0.0%.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.00
  • Content Count:  244
  • Reputation:   17
  • Joined:  11/19/11
  • Last Seen:  

Yes, sorry for posting this, already fixed.

 

 

Somebody told me that they don't get level down, they just stop leveling their leechers. 

 


Cheers!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.00
  • Content Count:  244
  • Reputation:   17
  • Joined:  11/19/11
  • Last Seen:  

I love this one! Thank you for this script, i am using this right now ;)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.00
  • Content Count:  244
  • Reputation:   17
  • Joined:  11/19/11
  • Last Seen:  

Um another request, i want to make them level down when they are max level? is it available? for example, max base level is 150 so that means when they reach the max level, they can now experience leveling down...

Edited by Microsoft
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  218
  • Topics Per Day:  0.05
  • Content Count:  1180
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

Here you go. This doesn't seem very effective though. The drop down to 149, but what good does that really do?

 

Peopleperson49

 

 

- script UponDeath -1,{
OnPCDieEvent:
if(BaseLevel!=150) { end; }
set BaseLevel,BaseLevel-1;
dispbottom "Your base level has been decreased by 1.";
end;
}
Edited by Peopleperson49
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   131
  • Joined:  11/10/12
  • Last Seen:  

Why do you want them to level down? Don't their stats mess up in that way?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  218
  • Topics Per Day:  0.05
  • Content Count:  1180
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

Yes it would mess with stats points since they are probably already used at that point. The way I think it works is that you decrease your level but your current stats points stay the same. However when you level back up you don't get anymore stat points. So in reality its pointless to lower the level which is what I meant in post #8 when I said it didn't seem very effective.

 

Peopleperson49

Edited by Peopleperson49
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...