Gondolom mindenki tud csinálni éjjel és nappal -t csináló parancsot. De most olyan parancsot csinálunk, hogy egyénien tudjuk beállítani a saját idõnket!
Sok sikert!
Letöltések:ZCMD:
http://forum.sa-mp.com/showthread.php?t=91354sscanf:
http://forum.sa-mp.com/showthread.php?t=120356Include -oljuk a a zcmd -t és az sscanf -ot.
#include <zcmd>
#include <sscanf2>
Itt a parancs kódja:
CMD:setmytime(playerid,params[])
{
new hour, minute;
if(sscanf(params,\"dd\",hour,minute)) return SendClientMessage(playerid,0x00FF00FF,\"Használat: {Ff00FF}/setmytime [Óra] [Perc]\");
if(!(0 <= hour <= 24 || 0 <= minute <= 60)) return SendClientMessage(playerid,0xff0000ff,\"Az {00ff00}\'Óra\' {ff0000}és/vagy a {00ff00}\'Perc\' {ff0000}érvénytelen(ek)\");
else if(0 <= hour <= 24 || 0 <= minute <= 60)
{
SetPlayerTime(playerid,hour,minute);
}
return 1;
}