Here i am going to release some query's to help some of you out. I am sure alot of the older members of server owners. Already no all of this.
Well here is the frist one.
Query For Deleteing Flowers Off of a Player.
Code:
update cq_user set flower=0 where account_id=2;
update cq_user set flower_w=0 where account_id=2;
DELETE FROM cq_flower WHERE player_id >= 14481775;
/*Okay here is a little harder. Since you have to delete this form to places you will need
to change the account_id and the player_id to what ever the id's of the players that got flowers
gave to them. Hopefully you want have to do this. But after you run this script. Do a maintence.
So that it will delete the flower from your character. Then this should work.*/
Vip award to players account.
Code:
update account set vip=7 where id=(account id here);
Here is botjail and mute a player.
Code:
update cq_user set disableFlag=1 where account_id=(player account id);
update cq_user set cheat_time=9999 where account_id=(players account id);
To Un botJail and Un mute a player
Code:
update cq_user set disableFlag=0 where account_id=(plaeryes account id);
update cq_user set cheat_time=0 where account_id=(Players Account Id);