-
MJ / Game Master
Français :
Bonjour,
Voila, je cherche sur un serveur 1.4.4 genesis comment mettre des personnes en GM/MJ, j'ai cherché partout sans trouvé, merci de votre aide.
English :
Hi ,
i want know what im doing for make my player GM in my server PW.
Thanks
--------------------------------------------------------------------------------
" Hello,
Here, I try on a server 1.4.4 genesis how to put people in GM / GM, I looked everywhere found without, thank you for your help."
-
Re: MJ / Game Master
With 1.4.4 just use pwAdmin and change it in the Accounts page.
I suppose it might depend on which release you have, as to whether the proper tool is available for you.
If you start learning the servers with 343's 1.3.6 release, you can't go wrong. If you start later, without knowing server, then you will go wrong, almost guaranteed.
-
Re: MJ / Game Master
on mysql "Call addGM(ID, 1)" (I think it's 1..)
for example. if the account id is 240 it's
"call addGM(240, 1)"
hopefully this helps
-
Re: MJ / Game Master
Hi have french server
is note in webadmin
IM no see what table in mysql i find everywhere
help me
-
Re: MJ / Game Master
pm me with contact info for skype, yahoo, or MSN
-
Re: MJ / Game Master
-
Re: MJ / Game Master
I did, you're not online?
I sent the request twice now
-
Re: MJ / Game Master
-
Re: MJ / Game Master
I added you. I'll pm it (I'm not making it public. it's my personal one)
-
Re: MJ / Game Master
i think it's resolved, coz i find his problem.
he has mysql with navicat, and his table for GM is auth, not aquireUserprivilege like a 1.4.4 or 1.4.5, on this forum....
and he must add any GM without pwAdmin, but by navicat...
-
Re: MJ / Game Master
PHP Code:
private function grantGM($gid){
mysql_select_db($this->G_SQLDB_SERVER,$this->DBi);
$this->mySQLQuery("CALL addGM('$gid','1');");
}
private function removeGM($gid){
mysql_select_db($this->G_SQLDB_SERVER,$this->DBi);
$this->mySQLQuery("DELETE FROM auth WHERE auth.`userid` = $gid;");
}
Cheers