SA-MP Forums Archive
[HELP] Dialog list 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: [HELP] Dialog list error (/showthread.php?tid=540403)



[HELP] Dialog list error - darkokan - 04.10.2014

Код:
public OnPlayerEnterCheckpoint(playerid)
{
	if(h_cptype(playerid) == BUS_TYPE_SEXSHOP)
	{
	        ShowPlayerDialog(playerid,DIALOG_SEXSHOP_LIST,DIALOG_STYLE_LIST,"Alışveriş","Para Çek\nPara Yatır\nHesap Bilgisi\nPara Transferi","Select","Iptal");
	return 1;
	}
}
error 012: invalid function call, not a valid address
error 001: expected token: ";", but found ")"
error 029: invalid expression, assumed zero
fatal error 107: too many error messages on one line


Re: [HELP] Dialog list error - YanLanger - 04.10.2014

PHP код:
public OnPlayerEnterCheckpoint(playerid)
{
    if(
h_cptype(playerid) == BUS_TYPE_SEXSHOP)
    {
            
ShowPlayerDialog(playerid,DIALOG_SEXSHOP_LIST,DIALOG_STYLE_LIST,"Alışveriş","Para Зek\nPara Yatır\nHesap Bilgisi\nPara Transferi","Select","Iptal");
             return 
1;

Not sure but try


Re: [HELP] Dialog list error - darkokan - 04.10.2014

Nothing changed still errors. Thanks though