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

how change the god outfit

Ralfegor

New Member
Joined
Apr 6, 2008
Messages
297
Reaction score
1
when i log in with my god i have the God outfit and i dont want the gods with gods outfit... and if i change my outfit then relog again change automatic to the god outfit i want gods to use normal outfits.. and how can i change
You see yourself. You are god.
to
17:49 You see yourself. You are the admin.
 
1. Goto data/xml/groups.xml -- Open it, and change god, to admin.
2. Then restart your server.

Change looktype:
1. goto data/xml/outfits.xml
2. Look for
PHP:
<outfit type="0;1;2" looktype="75" enabled="1" name="GM Outfit" access="3"/>
<outfit type="0;1;2" looktype="266" enabled="1" name="CM Outfit" access="4"/>
<outfit type="0;1;2" looktype="302" enabled="1" name="God" access="5"/>
3. Change to what outfits you want.
 
my server is
The Forgotten Server, version 0.3.1 (Crying Damson)

there is no data/xml/groups.xml

and in outfits.xml there is no such line

Code:
<outfit type="0;1;2" looktype="75" enabled="1" name="GM Outfit" access="3"/>
<outfit type="0;1;2" looktype="266" enabled="1" name="CM Outfit" access="4"/>
<outfit type="0;1;2" looktype="302" enabled="1" name="God" access="5"/>

what can i do?:(
 
This worked for me on TFS 0.3.2:

  1. Go to your database (http://127.0.0.1/phpmyadmin)

  2. Click the tab that says "SQL" (next to Export, Import, Search, etc)

  3. Insert this sql query:
    PHP:
    INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
    (7, 'the Admin', 546534563834, 4194303, 5, 4, 8000, 400, 128);

    The last "128" is the outfit I chose to test it, but you can choose any outfit you desire. To see all the possible looktypes:

    http://otland.net/f83/monster-looktypes-31774/

  4. Now go to the table "players", find your God char, edit it and change the group_id to 7.
  5. Finally just restart your server to see the changes.


Thats all, your char will have all same God's powers and stuff but with a different outfit even after relogging, and when you see yourself it says: "You see yourself. You are the admin.".

*If anyone knows about any flaws this might produce, post here. Im not so good at MySQL stuff, I just go by logics here.*

Hope it works for ya.
 
Last edited:
@Grehy in my database on the table "groups" but it say an error when i change it says
Overflow converting variant of type (Int64) into type (Integer)
and 3 buttons that say Save Details Ok

I dont know whats happening with my database always say that error also i cant change players lvl and nothing cus that error show

@Guitar Freak my database in (http://127.0.0.1/phpmyadmin)? dont know how to enter there 0.0
 
Last edited:
@Grehy in my database on the table "groups" but it say an error when i change it says


I dont know whats happening with my database always say that error also i cant change players lvl and nothing cus that error show

@Guitar Freak my database in (http://127.0.0.1/phpmyadmin)? dont know how to enter there 0.0

Thats your database, the place where all your accounts/players and everything is stored. Unless you're using an XML server but I doubt that.

If you're using any TFS you then must have a MySQL database (or SQLite) working and you enter by going there (http://127.0.0.1/phpmyadmin). Read Zisly's tutorial to know how to setup/enter your database:

http://otland.net/f137/ot-server-how-why-22076/

Cheers.
 
please i need to know how can i edit the table "groups" in my database but always say the error thing
Overflow converting variant of type (Int64) into type (Integer)
Save... Details... Ok...

and i cant change nothing :(
 
Back
Top