24.11.2013, 20:59
It probably happened when he loaded the FS in his server. So it should be like this:
Just tested it and it works pretty good and smooth
pawn Code:
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" LiveText v1.1 by Bombo");
print("--------------------------------------\n");
for(new i = 0; i < MAX_PLAYERS; ++i)
{
if(IsPlayerConnected(i))
{
CreateLiveText(i);
ShowLiveText(i);
}
}
TimerMove = SetTimer("TimerMoveText", 50, true);
return 1;
}
