• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

HELP! Minimum Level for War server

noco2171

New Member
Joined
May 9, 2012
Messages
4
Reaction score
0
Is there any scripts or any settings to make players not go below a certain level?

For example: I have made a war OT where the starting level is 50. but when i die i drop to level 49. is there any way to set the minimum level to 50?

Also, is there any scripts to make players never loose equipment and bp, and how to make a admin account.

thanks
 
Add this to login.lua
LUA:
	if getPlayerLevel(cid) < 50 then
		doPlayerAddLevel(cid, (50 - getPlayerLevel(cid)))
	end
		doPlayerSetLossPercent(cid, PLAYERLOSS_CONTAINERS, 0)
		doPlayerSetLossPercent(cid, PLAYERLOSS_ITEMS, 0)
 
Awesome, thanks:)
Do you have a starting skill script?
Or a script to get 5 platinums every time you kill someone or help kill them
 
Back
Top