• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Create Account rank1

Status
Not open for further replies.

wowkillaz

Respected Member
Hello again! :p , Im wondering if someone can help with a little proob! Im using fusioncmsv6 and wanted to make when peoples make one account , they get rank 1, how can i do this?

ohh boys
 

Tommy

Founder
Hello again! :p , Im wondering if someone can help with a little proob! Im using fusioncmsv6 and wanted to make when peoples make one account , they get rank 1, how can i do this?

ohh boys

I'm not sure what their PHP code and mysql connection functions look like, but when the player creates his account, you can edit the INSERT query to set their rank:

Query:
Code:
INSERT INTO `accounts` (`login`, `password`, `gm`, `email`) VALUES ('USERNAME', 'PASSWORD', 'GMLEVELHERE', 'EMAIL');

Like I said though, I don't know how Fusioncms handles their connection stuff.
 

veins

Epic Member
INSERT INTO `accounts` (`login`, `password`, `gm`, `email`) VALUES ('USERNAME', 'PASSWORD', 'GMLEVELHERE', 'EMAIL'); If i'm not mistaken even tho i have no clue, just a simple guess.
 

Tommy

Founder
INSERT INTO `accounts` (`login`, `password`, `gm`, `email`) VALUES ('USERNAME', 'PASSWORD', 'GMLEVELHERE', 'EMAIL'); If i'm not mistaken even tho i have no clue, just a simple guess.

You just basically copied what I wrote.
 
Status
Not open for further replies.
Top