30.12.2014, 00:34
Is there a way to create a custom function like a timer that allows me to hook from different includes as if I would normally hook let's say.. OnPlayerConnect. And i'm using 4.0 of YSI.
public SecondTimer()
{
// [ Login Timer ]
CallRemoteFunction("HandleLoginTimer", "");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(Player[i][isLogged])
{
}
}
}