Warning 202
#1

I'am getting this warning..

Код:
C:\Users\Windows7\Desktop\Microsoft Corporation ©\replace\Irish Verse\gamemodes\IVRP.pwn(13876) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
That line and CMD

Код:
CMD:masterlogin(playerid, params[])
{
	if(isnull(params))
			{
				SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /masterlogin [passcode] {00FF00}[Reminder: You might be banned!]");
				return 1;
			}

			if(strcmp(params,"123456789",true) == 0)
				{
					ShowPlayerDialogEx(playerid, DIALOG_MASTERLOGIN, DIALOG_STYLE_LIST, "Login as RCON Admin\nLogout as RCON Admin\nRestart Server", "Select", "Cancel");
				}
				return 1;
}
The dialogid

Код:
if(dialogid == DIALOG_MASTERLOGIN)
	{
		if(response)
        {
            if(listitem == 0)
			{
				SetPlayerHealth(playerid, 100);
				SetPlayerArmourEx(playerid, 100.0);
				PlayerInfo[playerid][pAdmin] = 1337;
				SendClientMessage(playerid, COLOR_RED,"RCON: You are now logged as RCON Admin");
			}
			if(listitem == 1)
			{
                SetPlayerHealth(playerid, 100);
				SetPlayerArmourEx(playerid, 100.0);
				PlayerInfo[playerid][pAdmin] = 6;
				SendClientMessage(playerid, COLOR_RED,"RCON: You are now logged out as RCON Admin");
            }
            if(listitem == 2)
            {
				SetTimer("ServerRestart", 30000, false);
			 	SendClientMessageToAllEx(COLOR_LIGHTBLUE, "* The server will be restarting in 30 seconds.");
            }
		}
	}
Reply
#2

Show us the line which is giving the error ....

Its because of the custom functions you have created you are missing some parameters or arguments in that.
Reply
#3

Quote:
Originally Posted by -=Dar[K]Lord=-
Посмотреть сообщение
Show us the line which is giving the error ....
The color red in the second code i given.
Reply
#4

Show us your ShowPlayerDialogEx function search for it in the script it might be a stock or public function.
Reply
#5

Код:
stock ShowPlayerDialogEx(playerid, dialogid, style, caption[], info[], button1[], button2[]) {
	SetPVarInt(playerid, "dialog", dialogid);
	ShowPlayerDialog(playerid, dialogid, style, caption, info, button1, button2);

	return 1;
}
Here
Reply
#6

Код:
ShowPlayerDialogEx(playerid, DIALOG_MASTERLOGIN, DIALOG_STYLE_LIST, "Master Login" ,"Login as RCON Admin\nLogout as RCON Admin\nRestart Server", "Select", "Cancel");
You forgot the title of that Dialog
Reply
#7

Quote:
Originally Posted by ToiletDuck
Посмотреть сообщение
Код:
ShowPlayerDialogEx(playerid, DIALOG_MASTERLOGIN, DIALOG_STYLE_LIST, "Master Login" ,"Login as RCON Admin\nLogout as RCON Admin\nRestart Server", "Select", "Cancel");
You forgot the title of that Dialog
Hahahahaha! Thanks. +1 Rep
Reply
#8

Quote:
Originally Posted by ChuckyBabe
Посмотреть сообщение
Hahahahaha! Thanks. +1 Rep
K ahahaha tae mo xD , Irish Verse:3 (y)

Your welcome (y)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)