06.07.2012, 15:19
Hey guys so i have successfully made a mysql database with [HIC]TheKiller's tutorial
The database contains:
Username,password-hashed-,money,score,ip
I want to make a small admin system with some commands
So should i use enum like
If yes could someone give me an example of /setlevel cmd using mysql ?
Is there other way i could make it?
The database contains:
Username,password-hashed-,money,score,ip
I want to make a small admin system with some commands
So should i use enum like
pawn Код:
enum PlayerInfo
{
Username,
password,
score,
money,
IP,
AdminLevel
}
Is there other way i could make it?