10.06.2014, 21:00
(
Last edited by iZN; 10/06/2014 at 09:31 PM.
Reason: forgot to format PlayerInfo[playerid][IP]
)
pawn Code:
forward LoadAccount(playerid);
public LoadAccount(playerid)
{
if(!cache_get_row_count())
{
// No registration found - they need to be registered!
return true;
}
new szQuery[16];
// Now we will continue in order to complete our query
format(szQuery, sizeof(szQuery), "%s", PlayerInfo[playerid][IP]);
cache_get_field_content(0, "IP", szQuery);
return true;
}