• 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 Avesta 7.6 doesn't use commands ;(

rege stail

New Member
Joined
Jul 16, 2009
Messages
150
Reaction score
4
Hi i have avesta 7.6 with
SQL:
 and commands gamemaster doesn't used. In game i saw /a 1 and nothing happens... 0 errors in server log ....
commands.xml
[CODE]<?xml version="1.0"?>

<commands>
-- Gods
    <command cmd="/i"            access="3" />        -- Create a item by ID
    <command cmd="/n"            access="3" />        -- Create a item by name
    <command cmd="/reload"      access="3" />        -- Reload configurations
    <command cmd="/s"            access="3" />        -- Summon a NPC
    <command cmd="/openserver"  access="3" />      -- Open the server
    <command cmd="/closeserver"  access="3" />      -- Close the server
    <command cmd="/owner"        access="3" />        -- Set a player to house owner
    <command cmd="/goto"        access="3" />        -- Teleport to players, creatures or NPCs
    <command cmd="/a"            access="3" />        -- Teleport by SQMs
    <command cmd="/raid"        access="3" />        -- Start raid
    <command cmd="/up"          access="3" />        -- teleport on higher floor
    <command cmd="/down"        access="3" />        -- teleport on lower floor


-- Gamemasters
    <command cmd="/c"            access="2" />        -- Teleport a player to you
    <command cmd="/m"            access="2" />        -- Summon a "wild" monster
    <command cmd="/summon"      access="2" />        -- Summon a monster
    <command cmd="/kick"        access="2" />        -- Kick a player
    <command cmd="/save"        access="2" />        -- Save server
    <command cmd="/refreshmap"  access="2" />        -- Clean map

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

talkactions.xml

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

<talkactions>
    <talkaction words="/tp" access="3" filter="first word" script="tp.lua"/>
    <talkaction words="/a" access="3" filter="first word" script="teleporttiles.lua"/>
</talkactions>

Please help me Rep ++
 
Why is /a in talkactions?

That is most likely causing the error (talkactions is trying to call /a as well as the distro itself).

Try removing /a from talkactions.
 
bro is simple in the old days did not have WMD even on. 6 DB you have will count as 2 GM. then changes so

<?xml version="1.0"?>

<commands>
-- Gods
<command cmd="/i" access="2" /> -- Create a item by ID
<command cmd="/n" access="2" /> -- Create a item by name
<command cmd="/reload" access="2" /> -- Reload configurations
<command cmd="/s" access="2" /> -- Summon a NPC
<command cmd="/openserver" access="2" /> -- Open the server
<command cmd="/closeserver" access="2" /> -- Close the server
<command cmd="/owner" access="2" /> -- Set a player to house owner
<command cmd="/goto" access="2" /> -- Teleport to players, creatures or NPCs
<command cmd="/a" access="2" /> -- Teleport by SQMs
<command cmd="/raid" access="2" /> -- Start raid
<command cmd="/up" access="2" /> -- teleport on higher floor
<command cmd="/down" access="2" /> -- teleport on lower floor


-- Gamemasters
<command cmd="/c" access="2" /> -- Teleport a player to you
<command cmd="/m" access="2" /> -- Summon a "wild" monster
<command cmd="/summon" access="2" /> -- Summon a monster
<command cmd="/kick" access="2" /> -- Kick a player
<command cmd="/save" access="2" /> -- Save server
<command cmd="/refreshmap" access="2" /> -- Clean map

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



/i [id item]...
 
Back
Top