Issues with account status flagging....
I'm having some weird issues with my account flagging. I've done the following while setting up my DB:
Code:
INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)'); Code:
insert into account (name,status, minilogin_ip) values('username',250,'127.0.0.1'); |
I set my account status to 200, works fine as I think i have all my commands at 200 or under anyways.
can change the status with world.exe like in the tutorial or Code:
update account set status=200 where name='jbahe'; |
I've done both of those. The *DB* thinks I'm status 250, but the server doesn't
|
Well, i guess i didn't quite say it, but i was having problems at 250, i was getting only the level 0 commands, so i set it to the number of the highest command(200) and i got them all.
|
I changed the status to 200 in the DB, but it still shows me as an apprentice guide in /who all, and won't let me use the higher access commands w/o changing addon.ini. I'm confused as to why the server and the DB aren't communicating with each other properly.
|
Just a thought, but if you have more than one account in your database with minilogin_ip='127.0.0.1', it may be using the first one it finds, which may have a lower status.
Do: Code:
select id,name,status,minilogin_ip from account where minilogin_ip='127.0.0.1'; E.g. Code:
delete from account where minilogin_ip='127.0.0.1' and status <> 250; |
All times are GMT -4. The time now is 05:17 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.