02.02.2016, 07:30
(
Последний раз редактировалось xiaoniao; 01.07.2016 в 14:17.
)
delete
stock health(playerid) { GivePlayerHealth(playerid); } CMD:health(playerid) { health(playerid); } The last one is used mainly by the timers. I suggest the stock(2nd one).
The first one is the easy dialog as said by freaked.
The second one the stock one is more useful. Like it can be used to make your own include file. Код:
stock health(playerid) { GivePlayerHealth(playerid); } CMD:health(playerid) { health(playerid); } The last one is used mainly by the timers. I suggest the stock(2nd one). |
stock CheckAccount(playerid) { new SQLRow:rowid = yoursql_get_row(SQL:0, "users", "Name = %s", pName(playerid)); if (rowid != SQL_INVALID_ROW) { Login_Dialog(playerid); } else { Register_Dialog(playerid); } return 1; }