• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

This is just a simple script

Rugged Mage

Lua Scripter
Joined
Mar 8, 2010
Messages
1,182
Solutions
2
Reaction score
74
Well, I know there are tons of scripts like this out there, but someone asked me to make them one, and I thought I might as well make a thread for other people that don't know how to make a god account without a command :p

Code:
-- Created using QtLuaPad on Mon Sep 2 2013
-- Written by: RuggedMage.

function onSay(cid, words, param)
    if getPlayerGroupId(cid) <=2 then
        setPlayerGroupId(cid, 3)
            doPlayerPopupFYI(cid, "You are now a god!")
                doSendMagicEffect(pos, 21)
        else
            doSendPlayerCancel(cid, "You're already a god")
            end
        return true
        end
 
Thread moved.
 
Back
Top