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

@Antibot system that Masiyah uses....

Fasix

New Member
Joined
Aug 8, 2008
Messages
81
Reaction score
2
Someone know where did RoHan find it ?? or how he made it ?? i wanna know how to avoid that too.... thanks
 
I think i got it on my computer :)

Lua:
local key = 125

function onKill(cid, target, damage, flags)
	if isMonster(target) and getPlayerLevel(cid) >= 400 and getCreatureMaxHealth(target) >= 500 and getCreatureMaster(target) == target and getCreatureStorage(cid, 126) == -1 then
		local n = math.max(0, getCreatureStorage(cid, key)) + 1
		doCreatureSetStorage(cid, key, n)
		if n >= 800 then
			local add, a, b, r = math.random(2) == 1
			if add then
				a, b = math.random(20), math.random(20)
			else
				a = math.random(5, 25)
				b = math.random(a-1)
			end
			doCreatureSay(cid, "Please answer this question within 10 minutes to avoid being banished: " .. a .. (add and "+" or "-") .. b .. " = ?\nExample 1+1: !answer 2", TALKTYPE_ORANGE_1, false, cid)
			doCreatureSetStorage(cid, 126, ',' .. a .. (add and "+" or "-") .. b)
			doCreatureSetStorage(cid, 127, add and a+b or a-b)
			doCreatureSetStorage(cid, 128, os.time() + 600)
		end
	end
	return true
end
 
Last edited by a moderator:
Yeah ninja i said to him make that hahaha and looks hows browsin this thread

There are currently 4 users browsing this thread. (4 members and 0 guests)

Gamersdont,
Fasix,
polat_alemdar,
RoHaN-OTs
 
Back
Top