14.08.2006, 13:54
you actually shouldnt be able to use it with include
(for sheep & sXd) anyway, i suggest you use this
instead of
;
;
which is less work and shows the text in green too
(for sheep & sXd) anyway, i suggest you use this
instead of
pawn Code:
if(player_zone_before == -1) GameTextForPlayer(i,zones[j][zone_name],1500,1);
else if(strcmp(zones[j][zone_name],zones[player_zone_before][zone_name],true) != 0) GameTextForPlayer(i,zones[j][zone_name],1500,1);
pawn Code:
new string[30];
format(string,30,"~g~%s",zones[j][zone_name]);
if(player_zone_before == -1) GameTextForPlayer(i,string,1500,1);
else if(strcmp(zones[j][zone_name],zones[player_zone_before][zone_name],true) != 0) GameTextForPlayer(i,string,1500,1);
which is less work and shows the text in green too