Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
what the loot in the player dead human
that normal loot msg
Loot of a rat: 3 gold coins, cheese.
i want this msg when kill player and losse items get this msg
01:20 Loot of a "..getcreaturename(target)..": balalalla, balanablaba.
anyone can explain how this script work??
https://otland.net/threads/antibot-system-that-masiyah-uses.161475/#post-1555273
i know it need globalevents and talkactions but i need to know how this script work
i ask for this script
when player kill othere player the player die lost items the killer get msg
loot creaturename {dead} : name of items player losse
tfs 0.4
lib
function getDistanceBetween(fromPosition, toPosition)
local x, y = math.abs(fromPosition.x - toPosition.x), math.abs(fromPosition.y - toPosition.y)
local diff = math.max(x, y)
if(fromPosition.z ~= toPosition.z) then
diff = diff + 9 + 6
end
function onSay(cid, words...
i have this function in 032 position and i used
if getDistanceBetween(getThingPos(cid),getThingPos(tid)) <= 7 then
return doPlayerSendCancel(cid, "creature not in range.")
end
give me error "" attempt to index local 'toposition' <a boolean value
i have this spell and want to edite it for if u don't see player or range nore than 7 can't use this talkaction.
function onSay(cid, words, param)
if (not exhaustion.check(cid, 87924)) then
if param == "" then
return doPlayerSendCancel(cid, "Add a name.")
end
if...