01.08.2012, 10:34
Is it possible to add everything in 1 line? because i added this in all cmds (in more than 100 cmds)
And it is very hard to replace every thing with
If it is in 1 line then i can easily replace it by pressing "H"
pawn Код:
if(Minigame[playerid]) return GameTextForPlayer(playerid, " ~y~ type /kill to exit",3000,3);
pawn Код:
if(Minigame[playerid]) {
SendClientMessage(playerid,yellow,"type /kill to exit from this Mini Game.");
return GameTextForPlayer(playerid, " ~y~ type /kill to exit",3000,3);
}