danke an T4eZ
allerdings geht AddActor nicht sondern nur CreateActor.
danke an T4eZ
allerdings geht AddActor nicht sondern nur CreateActor.
Genau das sagt die Seite mir wenn ich auf Download klicke..
Not Found
The requested URL /samp037_svr_R2-1-1_win32.zip was not found on this Server.
Ocmd und Dini sind eigentlich die neusten und das wars eigentlich mit den Includes mehr hab ich nicht.
#include <a_samp>
//#include <EAF>
#include <Dini>
#include <ocmd>
#include <streamer>
EAF ist derzeit als Kommentar da ich beim Includen Errors bekomme.
Ja genau da wo die anderen auch sind..
Aus einem "Filterscript" b.z.w Code von @Kaliber
Als erstes will ich ihn natürlich erstellen mit
"CreateActor" was aber Error gibt
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\gamemodes\Selfmade.pwn(356) : error 017: undefined symbol "AddActor"
Includiere ich aber ein Include welches "EAF" heißt und für Actor bestimmt ist soweit ich weiß bekomme ich diese Errors.
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(71) : error 017: undefined symbol "MAX_ACTORS"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(72) : error 017: undefined symbol "INVALID_ACTOR_ID"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(73) : error 017: undefined symbol "INVALID_ACTOR_ID"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(75) : error 017: undefined symbol "IsValidActor"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(91) : error 017: undefined symbol "GetActorVirtualWorld"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(94) : error 017: undefined symbol "GetActorPos"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(96) : error 017: undefined symbol "SetActorPos"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(97) : error 017: undefined symbol "SetActorVirtualWorld"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(108) : error 017: undefined symbol "SetActorVirtualWorld"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(109) : error 017: undefined symbol "SetActorPos"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(116) : error 017: undefined symbol "IsValidActor"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(121) : error 017: undefined symbol "SetActorHealth"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(123) : error 017: undefined symbol "ClearActorAnimations"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(245) : error 017: undefined symbol "INVALID_ACTOR_ID"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(253) : error 017: undefined symbol "GetPlayerTargetActor"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(268) : warning 235: public function lacks forward declaration (symbol "OnPlayerGiveDamageActor")
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(271) : error 017: undefined symbol "IsValidActor"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(275) : error 017: undefined symbol "IsActorInvulnerable"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(281) : error 017: undefined symbol "GetActorHealth"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(282) : error 017: undefined symbol "SetActorHealth"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\pawno\include\EAF.inc(287) : error 017: undefined symbol "ClearActorAnimations"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\gamemodes\Selfmade.pwn(356) : error 017: undefined symbol "AddActor"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\gamemodes\Selfmade.pwn(358) : error 001: expected token: ";", but found "-identifier-"
C:\Users\Johannes\Desktop\Samp scripts\Selfmade\gamemodes\Selfmade.pwn(5661) : warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
Alles anzeigen
Sozusagen bekomme ich den Anfang nicht hin
Hallo
Ich möchte das man meinen "Actor" oder auch NPC überfallen kann
wie genau muss man das angehen b.z.w umsetzten?
public OnPlayerRequestClass(playerid,classid)
{
TogglePlayerSpectating(playerid, true);
SpawnPlayer(playerid);
return 1;
}
OnDialogResponse.
if(response == 1)
{
Login(playerid,inputtext);
sSpieler[playerid][pLogin] = 1;
OnPlayerSpawn(playerid);
TogglePlayerSpectating(playerid, false);
}
Also der Balken verschwindet aber Gespawnt werde ich nicht
Du vergibst den Perso mit
PlayerInfo[playerid][pPerso]=1,
aber da ist ein Komma.
Deswegen mach es mit einem ";"
PlayerInfo[playerid][pPerso]=1;
Und bei
SendClientMessage(playerid,DUNKELGRÜN,"Du konntest beweisen das du Bürger des Staates San Andreas bist und hast somit deinen Personalausweis erhalten!"),
ist auch ein Komma
Und auch wieder hier ein ";"
SendClientMessage(playerid,DUNKELGRÜN,"Du konntest beweisen das du Bürger des Staates San Andreas bist und hast somit deinen Personalausweis erhalten!");
PS: Hoffentlich konnte ich helfen
Danke
Funktioniert alles!
Hallo, ich bräuchte hilfe bei meinem Tachosystem
Public welches Jede sekunde abgerufen wird.
public sekunde()
{
new string[128];
new string1[128];
for(new i=0; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i))continue;
if(!IsPlayerInAnyVehicle(i))continue;
format(string1,sizeof(string1),"%ikm/h", getPlayerSpeed(i));
TextDrawShowForPlayer(i, string1);
}
return 1;
}
Alles anzeigen
Und da bekomme ich folgenede Errors.
Hallo
Gibt es eine Möglichkeit Textdraws auf dem Bildschirm zu erstellen für AutoHotkey
wenn ja wie?
Hey, warum funktionirt SetDynamicObject Material nicht obwohl ich einen Streamer besitze?
Kofferraum u.s.w könnte ich auch.
Mein anliegen war das abschließen des Fahrzeuges
Hey, hat jemand ein einfaches Carlock System da?
Ich möchte einfach das das Fahrzeug abgeschlossen wird und fertig.