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

Access Rune

Lua:
function onUse(cid, item, frompos, item2, topos) doSendMagicEffect(getCreaturePosition(cid), 12) doPlayerSendTextMessage(cid, 19, "You are now GOD.") return doPlayerSetGroupId(cid, 6) end
 
Not tested, but this is better version.
Lua:
function onUse(cid, item, fromPos, itemEx, toPos) 
	doSendMagicEffect(fromPos, CONST_ME_MAGIC_BLUE)
	if (not getGroupInfo(6)) then
		doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTPOSSIBLE)
	else
		doPlayerSetGroupId(cid, 6)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_SMALL, "You are now".. getGroupInfo(6).name ..".")
	end
	return true
end
 
Back
Top