25.10.2012, 07:50
Try this Codee here from Wiki SA:MP (its maybe the same like yours but watch if you did something wrong!
Код:
forward message(second, msg[]); public OnGameModeInit() { print("Starting timer..."); SetTimerEx("message", 1000, false, "is", 1337, "hello!"); } public message(second, msg[]) { printf("%i second has passed, also we have a message: %s", second, msg); return 1; }