Hallo liebe Brotfisch-Gemeinde,
ich bin mal dieser Anleitung nachgegangen: [ SCRIPTING ] OnFoot NPC Tutorial
Jedoch kommt bei mir ein Fehler:
C:\Dokumente und Einstellungen\Maurice\Desktop\Sampserver mit Bots\gamemodes\lvdm.pwn(259) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
So ist meine Zeile:
public OnPlayerSpawn(playerid)
{
GivePlayerMoney(playerid, PocketMoney);
SetPlayerInterior(playerid,0);
SetPlayerRandomSpawn(playerid);
TogglePlayerClock(playerid,1);
return 1;
if(IsPlayerNPC(playerid)) //dies hier ist Zeile 259
{
new npcname[64];
GetPlayerName(playerid,npcname,64);
if(!strcmp(npcname,"testbot1",true))
{
//SetSpawnInfo(playerid, team, skin, Float:x, Float:y, Float:z, Float:rotation, weapon1, weapon1_ammo, weapon2, weapon2_ammo, weapon3, weapon3_ammo);
SetSpawnInfo(playerid, 0, 107, 2492.5146, -1703.2296, 1015.5703, 328.5485, 0, 0, 0, 0, 0, 0);
SetPlayerColor(playerid,0x00FF00AA);
return 1;
}
}
return 0;
}
Sieht jemand, was ich falsch gemacht habe?
Ich mache das heute zum ersten Mal