• 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!

Pvpenfo with skull lvl possible?

mannet

New Member
Joined
Sep 27, 2008
Messages
8
Reaction score
0
Is this script pssible to make? If so can somebody make it, what i mean is a script like the Merania server had if you ever played it

Like its PVP enforced, but with skull system and you can only attack people 30 lvls higher and lower yourself like 1-30 can only pvp with eachother and 31-60 can only pvp with eachother, 61-90 etc ..
 
In Crying Dawson 0.3.5pl1 is possible to get exp from players with skull system, there's the option in the config:
rateExperienceFromPlayers = x

enable normal pvp and you will have both
 
use "onAttack" in creaturevents ^^

An Example (not tested)
Lua:
function onAttack(cid, target)

	if(getPlayerLevel(target) >= getPlayerLevel(cid) - 30) and (getPlayerLevel(target) <= getPlayerLevel(cid) + 30) then
		return true
	else
		return false
	end
end
 
Back
Top