warning 215: expression has no effect - 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: warning 215: expression has no effect (
/showthread.php?tid=578649)
warning 215: expression has no effect -
ItzRbj - 21.06.2015
Script
Код:
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,"{FFFFFF}Registering...","{FFFFFF}Type your password below to register a new account.","Register","Quit");
Код:
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,"{FFFFFF}Registering...","{FFFFFF}Type your password below to register a new account.","Register","Quit");
2 Warnings , on those lines , what should i do ?
Re: warning 215: expression has no effect -
CodeStyle175 - 21.06.2015
You have to define DIALOG_REGISTER.
like
#define DIALOG_REGISTER 1
or
enum {
DIALOG_REGISTER
};
Re: warning 215: expression has no effect -
ItzRbj - 21.06.2015
Quote:
Originally Posted by CodeStyle175
You have to define DIALOG_REGISTER.
like
#define DIALOG_REGISTER 1
or
enum {
DIALOG_REGISTER
};
|
its already defined #define DIALOG_REGISTER 1
but still