SA-MP Forums Archive
Dailog Login Error - 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: Dailog Login Error (/showthread.php?tid=428975)



Dailog Login Error - Rayansh - 07.04.2013

Hello All When I m Compiling I'm Getting This Errors So I Try TO Fix It Didn't Working So Can You Fix It.?
Код:
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(638) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(638) : error 017: undefined symbol "str11"
C:\Documents and Settings\son\Desktop\'\Script\gamemodes\personal.pwn(638) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Humza Abro\Desktop\'\Script\gamemodes\personal.pwn(638) : fatal error 107: too many error messages on one line
And This Is Lines :
Код:
	format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nPlease Enter Your Password Below", name);
       	ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Login Account", str11, "Login", ""];



Re: Dailog Login Error - Azazelo - 07.04.2013

May be this help:

pawn Код:
format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nPlease Enter Your Password Below", name);
ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Login Account", str1, "Login", "");



Re: Dailog Login Error - ReVo_ - 07.04.2013

Код:
        new str11[128];
	format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nPlease Enter Your Password Below", name);
       	ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Login Account", str11, "Login", "");



Re: Dailog Login Error - Rayansh - 07.04.2013

Now getting this :
Код:
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(639) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(639) : error 001: expected token: ";", but found ")"
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(639) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Don\Desktop\'\Script\gamemodes\personal.pwn(639) : fatal error 107: too many error messages on one line
And This Is Line Please Fix It.
Код:
{
       new str11[128];
	format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nPlease Enter Your Password Below", name);
       	ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Login Account", str11, "Login", "");
	}



Re: Dailog Login Error - ReVo_ - 07.04.2013

You miss a ";" above this code.
I need more code.


Re: Dailog Login Error - Rayansh - 07.04.2013

This Is Lines :
Код:
{
       new str11[128];
	format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nPlease Enter Your Password Below", name);
       	ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Login Account", str11, "Login", "");
	}
	if (!dini_Exists(Pos(playerid)))
    {
       new str11[128];
        format(str1, 128, "{FFFFFF}Welcome to SeaStore Roleplay\n\n{DDCA22}Account:{FFFFFF} %s\n\nEnter A Password To Register This Account", name);
        ShowPlayerDialog(playerid, REGISTER, DIALOG_STYLE_INPUT, "Registration", str1, "Register", "");
	}



Re: Dailog Login Error - Rayansh - 08.04.2013

Anyone Tell Me Please