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

Help with config my server.

Knasbolln

New Member
Joined
Aug 3, 2008
Messages
17
Reaction score
0
I got some issues on my config on my ot, the enchanted spears and all the other paladin weapons are lame, and dont get any good hits..

i cant change the protectionlimit on the config, and the place when u enter poi, with the magic wall, u cant run past that one..

does any1 understand my problem? plix help ..
 
I think you're posting this in wrong forum. Try "Support"
Second thing is that you didn't tell us what server you're using, or didn't even post your weapons scripts.
 
what you could do, is just make it a movement lmao, like

Code:
local teleport = {x = 0000, y = 0000, z = 0}
local level = 80

function onStepIn(cid, item, position, fromPosition)
	if getPlayerLevel(cid) == level then
		doTeleportThing(cid, teleport, TRUE)
		doSendAnimatedEffect(teleport, 10)
	else
		doPlayerSendCancel("Sorry you are not the required level")
	end
end

i think thats kinda like what your looking for
 
Back
Top