Can't see 4th line in a menu. - 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: Can't see 4th line in a menu. (
/showthread.php?tid=362397)
Can't see 4th line in a menu. -
The__ - 24.07.2012
This is the line that cannot be seen :
pawn Код:
GunM = CreateMenu("Weapons", 7, 50.0, 180.0, 200.0, 200.0);
AddMenuItem(GunM, 0, "Colt 45 - $2600");
AddMenuItem(GunM, 0, "Desert Eagle - $4500");
AddMenuItem(GunM, 0, "Shotgun - $5000");
AddMenuItem(GunM, 0, "Rifle - $11000 ");
AddMenuItem(GunM, 0, "Mac10 - $3200");
AddMenuItem(GunM, 0, "Tec9 - $3200");
AddMenuItem(GunM, 0, "Kevlar Vest - $3500");
This is the unseen line :
pawn Код:
AddMenuItem(GunM, 0, "Rifle - $11000 ");
Re: Can't see 4th line in a menu. -
Rudy_ - 24.07.2012
Hm.. Strange.
pawn Код:
AddMenuItem(GunM, 0, "Rifle - $11000");
MAybe try?
Re: Can't see 4th line in a menu. -
The__ - 24.07.2012
Works, thanks.