07.06.2011, 14:49
pawn Код:
public OnGameModeInit()
{
print("It's about to start the timer now, I suppose..");
SetTimerEx("for_testing_purposes", 500, false, "is", 666, "Message for testing purposes!");
return 1;
}
forward for_testing_purposes(integer, string[]);
public for_testing_purposes(integer, string[])
{
printf("Integer: %i; String: %s", integer, string);
return 1;
}
Quote:
[17:51:08] It's about to start the timer now, I suppose.. [17:51:08] Integer: 666; String: 1.03.0011 |
Does anyone know what could cause the problem? It only occurs in the script, I'm developing.