26.12.2012, 09:23
if you use some variables which you don't want to remember it always then use define.
usually I use define for dialogs ids, like
this way better, if you want to declar CONST numbers like п = 3.14... then better use const.
if you have a lot messages or other text then use
you can use that like this
usually I use define for dialogs ids, like
pawn Код:
#define DIALOG_HELP 12
if you have a lot messages or other text then use
pawn Код:
new AlotText[][2] =
{
{"Text first"},{"Text second"}
};
pawn Код:
format(string,256,"( ! ) first TXT:%s second: %s",AlotText[0],AlotText[1]);