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

GM commands

andre66

Banned User
Joined
Oct 27, 2008
Messages
295
Reaction score
0
Alright i changed my group id to 3 that's the only choice with roxxor 8.42 but still i can't use the commands

33di5as.jpg


Help ?
 
You must change in accounts to. If sql, go to the table 'accounts' and choose your acc. Then change 'type' to 5, i think it works
 
ai mate ;:) do it like this instead.... :p
go into data/talactions/talkactions.xml

AnD opEn tAlkActiOns.XmL

And It should look like this
<?xml version="1.0" encoding="UTF-8"?>
<talkactions>
<!-- Gods -->
<talkaction log="yes" words="/addskill" access="6" event="function" value="addSkill"/>
<talkaction log="yes" words="/attr" access="5" event="function" value="changeThingProporties"/>
<talkaction log="yes" words="/serverdiag" access="5" event="function" value="serverDiag"/>
<talkaction log="yes" words="/closeserver" access="6" event="script" value="closeopen.lua"/>
<talkaction log="yes" words="/openserver" access="6" event="script" value="closeopen.lua"/>
<talkaction log="yes" access="6" words="/shutdown" event="script" value="shutdown.lua"/>
<talkaction log="yes" access="5" words="/mode" event="script" value="mode.lua"/>
<talkaction log="yes" words="/addvip" event="script" value="vip.lua"/>
<talkaction log="yes" words="/takevip" event="script" value="vip.lua"/>
<talkaction access="6" log="yes" words="!portal" script="portal.lua"/>
<talkaction log="yes" words="/s" access="6" event="script" value="summon.lua"/>
<talkaction log="yes" words="/n" access="6" event="script" value="creature.lua"/>
<talkaction log="yes" words="/reload" access="5" event="script" value="reload.lua"/>
<talkaction log="yes" words="/raid" access="5" event="script" value="raid.lua"/>

SOMTHING LIKE THIS RIGHT? NOW CHANGE ALL THIS LINES access="5" TO access="3" And It will work!!


Or else if u dont have it in talkactions go to data/xml/commands.xml
And Open Commands.xml
And should look like this

<?xml version="1.0" encoding="UTF-8"?>
<commands>
<command cmd="/b" group="4" acctype="4"/>
<command cmd="/i" group="4" acctype="4"/>
<command cmd="/n" group="4" acctype="4"/>
<command cmd="/reload" group="4" acctype="4"/>
<command cmd="/s" group="4" acctype="4"/>
<command cmd="/openserver" group="4" acctype="4"/>
<command cmd="/closeserver" group="4" acctype="4"/>
<command cmd="/ghost" group="4" acctype="4"/>
<command cmd="/owner" group="4" acctype="4"/>
<command cmd="/goto" group="4" acctype="4"/>

AND CHANGE ALL THIS LINES group="4" acctype="4" INTO group="3" acctype="3" AND IT WILL WORK! IF NOT MSG ME AGAIN!


IF IT SHOULD WORK JUST EXECUTE THIS IN UR PHPMYADMIN

CREATE TABLE IF NOT EXISTS `groups` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL COMMENT 'group name',
`flags` bigint(20) unsigned NOT NULL default '0',
`customflags` bigint(20) unsigned NOT NULL default '0',
`access` int(11) NOT NULL,
`violationaccess` int(11) NOT NULL,
`maxdepotitems` int(11) NOT NULL,
`maxviplist` int(11) NOT NULL,
`outfit` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Data i tabell `groups`
--

INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
(1, 'Player', 0, 0, 0, 0, 0, 0, 0),
(2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0),
(3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0),
(4, 'Gamemaster', 510024081247, 4189375, 3, 2, 4000, 200, 75),
(5, 'Community Manager', 546534563834, 4194303, 4, 3, 6000, 300, 266),
(6, 'God', 546534563834, 4194303, 5, 3, 8000, 400, 302);
 
@/mode

/mode is used to set servers' worldtype

example:

/mode value


here are possible values:
nopvp = {"1", "nopvp", "nonpvp", "no-pvp", "non-pvp", "safe"},
pvp = {"2", "pvp", "normal"},
pvpenforced = {"3", "pvpe", "pvpenforced", "pvp-enforced", "war"}
 
Back
Top