Folgende Meldung erhalte ich beim Kompilieren:
Code
C:\Users\PC\SA-MP\Scripting\gamemodes\test.pwn(240) : error 033: array must be indexed (variable "Waffe")
C:\Users\PC\SA-MP\Scripting\gamemodes\test.pwn(240) : error 036: empty statement
C:\Users\PC\SA-MP\Scripting\gamemodes\test.pwn(241) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
Dazu gehörige Zeile aus dem Gamemode:
[pwn=235]
ocmd:weapon(playerid, params[])
{
new Waffe[128];
new Munition[128];
if(sscanf(params, "ii", Waffe, Munition)) return SendClientMessage(playerid, COLOR_INFO, "> Benutzung: /weapon <WeaponID> <Munition>");
if(Waffe> 1 && Waffe< 46)
GivePlayerWeapon(playerid, Waffe, Munition);
return 1;
}
[/pwn]