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

Windows Script for the GM cant do the quest!

Lucashe

New Member
Joined
Oct 23, 2011
Messages
1
Reaction score
0
I want a script that the gamemaster cant do the quest... please help me.. tibia 8.60!
Can do anything to solve this problem!

I dont know if a post in the correct place, I'm new here and I need help ::$
 
Lua:
function onUse(cid, item, frompos, topos)

        local group = 5 -- Group ID of gamemaster   
     
	if getPlayerGroupID(cid) ~= group then
		if getPlayerStorageValue(cid 1000) ~= 1 then
			doPlayerAddItem(cid, 2400, 1)
			doPlayerSendTextMessage(cid, 22, "You have found a magic sword.")
			setPlayerStorageValue(cid, 1000)
		else
			doPlayerSendTextMessage(cid, 22, "You have already done this quest.")
		end
	else
		doPlayerSendTextMessage(cid, 22, "Only players can do this quest.")
	end
	
	return TRUE
end
 
Back
Top