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

MySQL Easy make a GOD on your server

Shawak

Intermediate OT User
Joined
Sep 11, 2008
Messages
1,985
Solutions
2
Reaction score
121
Location
Germany
GitHub
Shawak
Hello all,
here a very very easy tutorial how to create a GOD on your server :thumbup:.

1. Select your databse and click at the top on "SQL".
w02mwl.jpg


2. Paste this query:
HTML:
#-- Account / Password -----------------#
#-- If you make more GODs,
#-- change the id to 10000002 and so on...

SET @id = 10000001;

SET @name = "GOD TEST";
SET @acc = "ACCOUNT";
SET @pass = "PASSWORD";


#--- Coordinates where the
#-- character will spawn
SET @posx = 1000;
SET @posy = 1000;
SET @posz = 7;
#---------------------------------------#


INSERT INTO `accounts` (`id`,`password`,`group_id`,`name`) VALUES (@id,@pass,6,@acc);
INSERT INTO `players` (`id`,`name`,`group_id`,`account_id`,`looktype`,`town_id`,`posx`,`posy`,`posz`,`save`) VALUES (@id,@name,6,@id,302,1,@posx,@posy,@posz,1);

3. Click on "OK".

4. Be happy with your new GOD :thumbup:.
I tested this with TFS 0.3.5.

Rep++? :D

Regards,
Shawak
 
Last edited:
Is the sql query the same for Mystic Spirit 0.2 and Crying Damson 0.3? Which one have you tested this with? Please write so in the post and thread name.

Popular ots have much more accounts than 1000 and if using this script then, will overwrite a user's account. :P

Also, you should make an easy setup for temple position of the god. ^^

Else than that, very good. :)
 
I testet it with tfs 0.3.5,
and you can change the id to whatever you want :thumbup:.
 
Back
Top