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

Clone Items?

Mestor

Active Member
Joined
Feb 1, 2009
Messages
515
Reaction score
35
Location
Sweden
Hi, Is it some way to clone items?

Its some way that ppl can clone items on my server but idk how... only clue I got is that some players are online on account manager... I dont have a account manager... I disable it!



So maybe accountmanager + Something = clone?

Someone knows it?


REP++! :P
 
There are 2 different ways to clone items. Theyll use house bug and simply crash your server or they'll use guild system. also !createguild I suggest you remove it.
 
LUA:
local name = "Account Manager"
function onLogin(cid)
	if getCreatureName(cid) == name then
		doRemoveCreature(cid)
	end
        return TRUE
end
 
data/creaturescripts/scripts/login.lua
after "function onLogin(cid)" paste:
LUA:
	if getCreatureName(cid) == "Account Manager" then
		return doRemoveCreature(cid)
	end
 
This prevent to account mananger to login? This is weird, because I got my account mananger on admin and it have never been online says the site. But i saw in server log that some guy did login with account mananger.
 
Back
Top