also ich habe ein /explode befehlt erstellt nur bekomme ich noch 2 errors die ich nicht wegbekomme.
ich hoffe mir kann jemand helfen^^
Code
dcmd_explode(playerid,params[])
{
new pID;
if(sscanf(params,"u",pID))
{
return SendClientMessage(playerid,COLOR_YELLOW,"Verwendung: /explode [playerid]");
}
if(!IsPlayerConnected(pID))
{
return SendClientMessage(playerid,COLOR_YELLOW,"Kein Spieler mit angegebener ID Online");
}
new player[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(pID,player,sizeof(player));
format(string,sizeof(string),"%s hat %s in die luft gesprengt",player,pID);
SendClientMessageToAll(COLOR_YELLOW,string);
new Float:x, Float:y, Float:z;
GetPlayerPos(pID,x,y,z);
CreateExplosion(x,y,z,7,15); }
return 1;
}
Alles anzeigen
und das sind die errors:
C:\Users\Joél\Desktop\GTA Server\gamemodes\DudisGM.pwn(97) : warning 209: function "dcmd_explode" should return a value
C:\Users\Joél\Desktop\GTA Server\gamemodes\DudisGM.pwn(98) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
danke schonmal im voraus
MfG
Dudis