24.10.2014, 13:11
I am Trying to make a COmmand for admins to get any weapon they want
This is The Text under OnPlayerCommandText
Line 115 is The Line with ShowPlayerDialog
These are the errors I get
Plz Help me
I am very new to pawno, so if the mistake is obvious I'm sorry
This is The Text under OnPlayerCommandText
Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/Weapons", cmdtext, true) == 0) { if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,COLOR_RED,"Only Admins Can use This Command!"); else { ShowPlayerDialog(playerid, DIALOG_WEAPONS, 2, "Weapons", "Melee Weapons\nPistols\nSub Machine Guns\nShotguns\nRifles\nAssault Rifles\nThrowables\nHeavy Weaponry", "Select", "Cancel"); } return 1; } return 0; }
These are the errors I get
Код:
D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : error 001: expected token: ",", but found ";" D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : error 029: invalid expression, assumed zero D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : warning 215: expression has no effect D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : warning 215: expression has no effect D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : warning 215: expression has no effect D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : warning 215: expression has no effect D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : warning 215: expression has no effect D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : error 001: expected token: ";", but found ")" D:\Program Files (x86)\Rockstar Games\GTA San Andreas\Server\gamemodes\Zmode.pwn(115) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
I am very new to pawno, so if the mistake is obvious I'm sorry