SA-MP Forums Archive
Lol Werid Pawno bugg. - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Lol Werid Pawno bugg. (/showthread.php?tid=90638)



Lol Werid Pawno bugg. - basker - 09.08.2009

Ok Tell me can your See ANY Thing Wong whit this code ?

Код:
Veh = CreateMenu("Vehicle Menu", 2, 200.0, 100.0, 150.0, 150.0);
	AddMenuItem(Veh, 0, "Banshee");
	AddMenuItem(Veh, 0, "Buffalo");
	AddMenuItem(Veh, 0, "Bullet");
	AddMenuItem(Veh, 0, "Infernus");
	AddMenuItem(Veh, 0, "Phoenix");
	AddMenuItem(Veh, 0, "Sabre");
	AddMenuItem(Veh, 0, "Super GT");
	AddMenuItem(Veh, 0, "Turismo");
	AddMenuItem(Veh, 0, "ZR-350");
	AddMenuItem(Veh, 0, "Cheetah");
Or This ?

Код:
if (strcmp("/Veh", cmdtext, true, 10) == 0)
	{
	  if(GetPlayerScore(playerid) >= 50)
	  {
	    ShowMenuForPlayer(Veh,playerid);
		}
		else SendClientMessage(playerid,COLOR_RED,"your Dont Have the Right Score to use That Command !");
	}
Becus i Cant and Some how It Gives Me Those Warnings :S

Код:
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(108) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(109) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(110) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(111) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(112) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(113) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(114) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(115) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(116) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(117) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(118) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(269) : warning 213: tag mismatch
C:\Documents and Settings\Game User\Skrivebord\Server\gamemodes\LSDM.pwn(379) : warning 213: tag mismatch
OH BTW

The warnings Start After I try to make the Vehicle Menu..


Re: Lol Werid Pawno bugg. - Weirdosport - 09.08.2009

Veh needs to be a Menu variable.

E.g:

new Menu:Veh;

or

new Menu:Veh = CreateMenu...



Re: Lol Werid Pawno bugg. - basker - 09.08.2009

Quote:
Originally Posted by Weirdosport
Veh needs to be a Menu variable.

E.g:

new Menu:Veh;

or

new Menu:Veh = CreateMenu...
Ye i know i Did that just forgot to post it lol but they still the same


Re: Lol Werid Pawno bugg. - WrathOfGenesis - 09.08.2009

Can you show us all of the lines with errors please?


Re: Lol Werid Pawno bugg. - basker - 09.08.2009

Lol Fixed I only Out
Код:
new veh;
so i add new menu: Veh; so now its work