04.02.2008, 11:58
i just set the YSI(a lot of people don't know how to use) and used Dynamic Update with objects.
People are free to change it, but keeping the credits...
People are free to change it, but keeping the credits...
Quote:
public DynUpdateStart(playerid) { TogglePlayerControllable(playerid, false); new string[255]; format(string, sizeof(string), "~g~CARREGANDO ~b~OBJETOS ~w~!"); GameTextForPlayer(playerid, string, 3000, 6); PlayerPlaySound(playerid, 1056, 0.0, 0.0, 0.0); SetTimerEx("DynUpdateEnd", 1750, 0,"e",playerid); return 1; } public DynUpdateEnd(playerid) { TogglePlayerControllable(playerid, true); new string[255]; format(string, sizeof(string), "~g~OBJETOS ~b~CARREGADOS ~w~!"); GameTextForPlayer(playerid, string, 3000, 6); PlayerPlaySound(playerid, 1056, 0.0, 0.0, 0.0); return 1; } |