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

Account Manager...

Nefs

Nefs Staff
Joined
Jul 15, 2009
Messages
521
Reaction score
7
Location
Barcelona (Spain)
Hello

A peron on my ot, have one account with the Account Manager in players, he can clone items with this character, because can use MG with this player, anybody can say to me, how to block account manager on my ot or disable the script?
 
well, a good way is just get his information and change the account manager's password, and keep it for your self, do not delete it, or he will create it again..

or else move the character it self to your admin,

OR delete it, and create a new character with name "account manager" on your admin account..
 
Creaturescript like this could protect that:
If player logs in with account manager he should get 0 cap
After that he couldn't take items with this character
Also this character shouldn't be able to move or get level.
 
and what i can do?:S

delete this on login.php?
Code:
	local accountManager = getPlayerAccountManager(cid)
	if(accountManager == MANAGER_NONE) then
		local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
		if(lastLogin > 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
			str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
		else
			str = str .. " Please choose your outfit."
			doPlayerSendOutfitWindow(cid)
		end
 
Back
Top