Well, it's because I'm trying to do @kick command on label OnPCDieEvent, but the big problem here is that it have to happend even if the player is in autotrade mode (out of the game).
So, I thought that maybe if I save the char information on sql it can work. I really need help with this, so if you can help me.
I did this:
if (query_sql "SELECT `char_id` FROM `char_info` WHERE `char_id` = "+getcharid(0)+""))
but doesn't work at all, I have tried a lot of combinations, but really doesn't work.
My label is like this:
OnPCDieEvent:
if (query_sql "SELECT `char_id` FROM `char_info` WHERE `char_id` = "+getcharid(0)+"")){ //It will be true just if had found player data on sql table right?
atcommand "@kick "+getcharid(0);
}
end;
@EDIT
It's working, thanks guys. Source modification was needed .