so hatte ich es grade ebend auch nochmal versucht
Beiträge von SgtNiGhTeR
-
-
Das e bei Nativ[e]... ist auch da
trd geht das nichtevlt hilft euch die screens
-
der Pfad von Nativ.Network.Altis ist: "mpmission\Nativ.Network.Altis"
und in die server.cfg sieht es so aus:
Spoiler anzeigen
{
class Mission1
{
template="Native.Network.Altis";
difficulty="Regular";
};
};
-
Meine Missionsdatei kann nicht gefunden werden.
Ich habe jeden schritt befolg und die missions datei kann nicht geladen werden...
Habe das Script von Nativ-NetworkDatei[RELEASE] NATIVE NETWORK ALTIS LIFE RPG (4.0 + 3D EDITOR UPDATE)
Hier findet Ihr die aktuelle Version der Native-Network Missionsdatei. (Updated: 03.10.2016)nox28. Februar 2017 um 03:10
Ich finde einfach nicht denn fehler...
schonmal vorraus Vielen dank für eure Hilfe -
Dann empfehle ich dir mit den Grundlagen anzufangen, anstatt mit dem Verändern von unverständlichen/großen Missionen wie Altis Life. Dann kannst du selbst deine Lösungen finden. Deutsches Scripting Video Tutorial
Danke für deine Hilfe ich werde mir die Videos erstmal an gucken hatte die datein halt die in Video sind nicht gefunden
-
Ich habe mir eine Medic Uniform runtergeladen und möchte die gerne einfügen tut mir leid das ich ein Anfänger bin in Thema Arma 3 scripting
-
aber für Cops....
und ich habe ein skin hinzufügt für die medic ich habe es bis jetzt so gemacht:Codecase independent: { if (uniform player isEqualTo "U_BG_Guerilla2_1") then { _skinName = "textures\medic_uniform.jpg"; if (LIFE_SETTINGS(getNumber,"medic_extendedSkins") isEqualTo 1) then { if (FETCH_CONST(life_mediclevel) >= 1) then { _skinName = ["textures\medic_uniform_",(FETCH_CONST(life_mediclevel)),".jpg"] joinString ""; }; }; };
-
Wie kann man Fahrzeug skins Hinzfügen
-
-
-
-
-
-
Code
Alles anzeigenserver.cfg: /* ################## Arma 3 Servereinstellungen ################### ### EDIT: Andre Reinhardt (Nox) ### ### WEB: native-network.net ### ### QUELLE: Bohemia Interactive Studios ### ### Die bereits vorhandenen Einstellungen sind lediglich eine ### ### Empfehlung von uns, können jedoch verändert werden ### ################################################################# */ steamPort = 1337; //Die wurde in die Firewall hinzufügt! steamQueryPort = 27016; // ███████████████████████████████████████████████████████████████████████ // █████████████████████████ GRUNDEINSTELLUNGEN ██████████████████████████ // ███████████████████████████████████████████████████████████████████████ hostname = "Mein Altis Life Server | www.native-network.net | Rootserver Tutorial von Nox :)"; password = "123"; //Bei keinem Passwort einfach leer lassen... passwordAdmin = "DEIN ADMIN PASSWORT"; logFile = "arma3server.log"; verifySignatures = 2; // Verhindert dass Spieler welche unbekannte Mods verwenden deinen Server betreten und hält so eine Menge Hacker fern. Standart: 2 equalModRequired = 0; // Prevent players who don't have the exact same mods as the server from joining (best kept at 0) requiredSecureId = 2; // was used to define type of secureID maxPlayers = 64; // Slotzahl deines Servers. Empfohlen: 64 kickDuplicate = 1; // Each player normally has its own unique ID. If set to 1, players with an ID that is identical to another player will be kicked BattlEye = 1; // BattlEye Ein- oder Abschalten. 1 = Eingeschaltet | 0 = Ausgeschaltet (Nicht empfohlen!) motd[] = { "Willkommen auf meinem Server! :)", "Besuch unsere Homepage auf www.deinehomepage.de :)" }; motdInterval = 30; // Time interval (in seconds) between each message // ███████████████████████████████████████████████████████████████████████ // ███████████████████████ MISSIONSEINSTELLUNGEN █████████████████████████ // ███████████████████████████████████████████████████████████████████████ voteMissionPlayers = 1; // Tells the server how many people must connect before displaying the mission selection screen, if you have not already selected a mission in this config voteThreshold = 2; // Percentage (0.00 to 1.00) of players needed to vote for something, for example an admin or a new mission, to become effective. Set to 9999 to prevent people from voting random players as admins. class Missions { class Mission1 { template="Altis_Life.Altis"; difficulty="Regular"; }; }; // ███████████████████████████████████████████████████████████████████████ // █████████████████████ ERWEITERTE EINSTELLUNGEN ████████████████████████ // ███████████████████████████████████████████████████████████████████████ disableVoN = 0; // If set to 1, voice chat will be disabled vonCodecQuality = 10; // Supports range 1-30; 8kHz is 0-10 (narrowband), 16kHz is 11-20 (wideband), 32kHz is 21-30 (ultrawideband); higher = better sound quality persistent = 1; // If set to 1, missions will continue to run after all players have disconnected timeStampFormat = "short"; // Set the timestamp format used on each line of the server RPT log file. Possible values are "none" (default), "short", "full". allowedVoteCmds[] = {}; //Deaktiviert ALLE Votefunktion, solange in den Klammern keine Funktionen angegeben sind. allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; // only allow files with those extensions to be loaded via loadFile command (since Arma 3 build 1.19.124216) allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; // only allow files with those extensions to be loaded via preprocessFile/preprocessFileLineNumber commands (since Arma 3 build 1.19.124323) allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"}; // only allow files with those extensions to be loaded via HTMLLoad command (since Arma 3 build 1.27.126715) onUserConnected = ""; // command to run when a player connects onUserDisconnected = ""; // command to run when a player disconnects doubleIdDetected = ""; // command to run if a player has the same ID as another player in the server onUnsignedData = "kick (_this select 0)"; // command to run if a player has unsigned data onHackedData = "kick (_this select 0)"; // command to run if a player has data with invalid signatures onDifferentData = ""; // command to run if a player has modified data
-
-
-
1. Wenn man auf dem Server join Steht "Einrichten des Clients, bitte warten..."
Spoiler anzeigen
18:06:52 InitSound ...
18:06:52 InitSound - complete
18:06:52 PhysX3 SDK Init started ...
18:06:52 PhysX3 SDK Init ended.
18:06:56 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
18:06:56 Loading movesType CfgGesturesMale
18:06:56 Creating action map cache
18:06:56 MovesType CfgGesturesMale load time 165 ms
18:06:56 Loading movesType CfgMovesMaleSdr
18:06:57 Reading cached action map data
18:07:00 MovesType CfgMovesMaleSdr load time 3660 ms
18:07:01 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
18:07:01 Steam AppId from steam_appid.txt: 107410
18:07:03 Connected to Steam servers
18:10:15 Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";]
18:10:15 c:\w\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
18:10:16 Extensions:
2.Und befor man Join Kommt man auf der Karte und man muss Weiter drücken geht das automatisch weg?