• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Help console error

armyman

Member
Joined
Feb 15, 2014
Messages
318
Reaction score
14
Code:
Unknow command /i
Unknow command /n
Unknow command /goto
Unknow command /a
Unknow command /up
Unknow command /down
Unknow command /c
Unknow command /m
Unknow command /s
Some Warnings too
Code:
Warning: Missing acess level for command  /createid
Warning: Missing acess level for command  /createmonster
Warning: Missing acess level for command  /jump
Warning: Missing acess level for command  /jumpto
Warning: Missing acess level for command  /npc
Warning: Missing acess level for command  /summonmonster
Warning: Missing acess level for command  /tpcreature
Warning: Missing acess level for command  /tpdown
Warning: Missing acess level for command  /tpup

Commands.xml

XML:
<?xml version="1.0"?>

<commands>
-- Gods
    <command cmd="/i"     access="6" />   
    <command cmd="/createitem"   access="6" />   
    <command cmd="/reload"       access="6" />   
    <command cmd="/n"            access="6" />
    <command cmd="/openserver"   access="6" /> 
    <command cmd="/closeserver"  access="6" />
    <command cmd="/owner"        access="6" />   
    <command cmd="/goto"        access="6" />   
    <command cmd="/a"            access="6" />
    <command cmd="/raid"         access="6" />   
    <command cmd="/up"           access="6" />
    <command cmd="/down"         access="6" />

-- Gamemasters
    <command cmd="/c"    access="6" />   
    <command cmd="/m" access="6" />   
    <command cmd="/s" access="6" />   
    <command cmd="/kick"         access="6" />   
    <command cmd="/refreshmap"   access="6" />   

-- Tutors
    <command cmd="/B"            access="3" />        -- Red broadcast message
    <command cmd="/q"            access="2" />        -- Check your money
    <command cmd="/z"            access="2" />        -- Check effects (0-26)
    <command cmd="/info"         access="6" />        -- Info about a player
    <command cmd="/getonline"    access="2" />        -- Info about how many players are online
    <command cmd="/gethouse"     access="6" />        -- Info about house of a player
    <command cmd="/serverinfo"   access="6" />      -- Info about the server
    <command cmd="/t"            access="6" />        -- Go to your temple
    <command cmd="/town"         access="6" />        -- Go to your town

-- Players
    <command cmd="/sellhouse"    access="0" />        -- Sell your house to a player
    <command cmd="/buyhouse"     access="0" />        -- Buy house
    <command cmd="!online"       access="0" />        -- List of players online
    <command cmd="!frags"        access="0" />        -- Frags
</commands>
 
Did you read the errors?
Warning: Missing acess level for command /createid
Warning: Missing acess level for command /createmonster
Warning: Missing acess level for command /jump
Warning: Missing acess level for command /jumpto
Warning: Missing acess level for command /npc
Warning: Missing acess level for command /summonmonster
Warning: Missing acess level for command /tpcreature
Warning: Missing acess level for command /tpdown
Warning: Missing acess level for command /tpup

You can set the access via the account table, take a look at the account you are trying to use and set it to 6.
 
Yes! but i see this error before i connect in server, i'm not trying to do this commands... i saw theys in my console after the Load RSA KEY.
 
Yes! but i see this error before i connect in server, i'm not trying to do this commands... i saw theys in my console after the Load RSA KEY.

Oh misread sorry, check talkactions.xml aswell, somewhere you got a command / talkaction that dosn't have an access level.
If you got notepad++ you can do a folder serach for tpup and see what file it is.
 
hahaha no have omg


XML:
<?xml version="1.0"?>

<talkactions>
<talkaction words="/pos" script="cord.lua"/>
<talkaction words="/save" script="save.lua"/>
<talkaction words="/r" script="remove.lua"/>
<talkaction words="/share" script="share.lua"/>
<talkaction words="/invisible" script="invisible.lua"/>
</talkactions>
 
Back
Top