SA-MP Forums Archive
Timezone before the string? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Timezone before the string? (/showthread.php?tid=452537)



Timezone before the string? - ConnorHunter - 21.07.2013

So, I have this in my /adminchat command,

pawn Код:
if(PlayerInfo[i][pTimezoneEU] == 1) strcat(string, " {DEDEDE}[EU]");
if(PlayerInfo[i][pTimezoneOC] == 1) strcat(string, " {DEDEDE}[OC]");
if(PlayerInfo[i][pTimezoneNA] == 1) strcat(string, " {DEDEDE}[NA]");
And, i want the "{DEDEDE}[EU]" section to be before the "string" section, but it won't work if I do "{DEDEDE}[EU]", string);

Is it possible to do it so the timezone is first?