in der Config_Master.hpp in der Zeile vehicleShop_rentalOnly[] = { "B_MRAP_01_hmg_F", "B_G_Offroad_01_armed_F", "B_Boat_Armed_01_minigun_F" };, den B_MRAP_01_hmg_F herauslöschen.
Beiträge von B4v4r!4n_Str!k3r
-
-
im Frühjahr hatte danielstuart14 angekündigt bis zum [lexicon]Tanoa[/lexicon] Release fertig zu sein. Jetzt herrscht eine Sommerflaute und es wird fast nicht mehr weiterentwickelt.
Es sind jetzt noch 7 Issues die abgearbeitet werden müssen. Wie lange das noch dauert kann man aber nicht wirklich sagen.
Ich benutze die 4.4r3 und werde jeden Commit einzeln updaten, sobald die 4.5 released wurde.
-
Doch die 4.4r3 ist blos ein aktueller Entwicklungsstand, der aber mehr oder weniger keine Bugs beinhaltet. Die 4.4r3 wurde veröffentlicht, damit es eine Version gibt, in der Spyglass und Battleye seit dem Apex Update einwandfrei läuft.
Since v4.1 I've been updating the Altis Life mod, and pushing fixes. ArmaLife was created for the purpose of pushing dev changes that could further be pushed to Tonic's repo.
Today, we have about 9 members that continue to push daily updates and fixes to our repository. Our current aim is to fix everything that is currently broken, and then push v4.5 to Tonic's repo.Die nächste "stable Version" wird die 4.5, aber das dauert dann noch ein wenig. Diese wird dann unter https://github.com/TAWTonic/Altis-Life zu finden sein.
Dennoch scheint mir die 4.4r3 mit weniger Bugs übersät wie die 4.4. Was danielstuart14 auch selbst zugibt:
I'm glad to say, we're going to add an exclusive tab for ArmaLife monthly builds, as ArmaLife releases are as stable as those on Tonic's repo (or even more so). But, as always, Tonic's builds are still our focus.
-
-
Servus,
bei shift+z öffnet sich ein WIP Telefon, das bisher noch keine Funktionen hat. Damit muss man rechnen, wenn man eine Entwicklerversion nutzt.
Code//Y Player Menu case 21: { if (!_alt && !_ctrlKey && !dialog && !(player getVariable ["restrained",false]) && {!life_action_inUse}) then { if (!_shift) then { [] call life_fnc_p_openMenu; } else { [] call life_fnc_altisPhone; }; }; };
das hier findet man überings im fn_keyHandler.sqf
Wenn du das Telefon bei shift+z nicht öffnen möchtest, kannst du [] call life_fnc_altisPhone; auskommentieren.
MfG
B4v4r!4n_Str!k3r -
versuch mal:
arma3server.exe -port=2302 -servermod=@life_server;@[lexicon]extDB[/lexicon];Ich nutze einen Linux Root Server (x64bit) mit Debian 8 drauf.
passt nicht ganz zusammen.
wenn dann mit ./arma3server -servermod=@life_server\;@extDB2 probieren
-
was darf man unter Option 1 in der Umfrage verstehen?
-
ich hab an der eigentlich nichts geändert,
okay die CfgRemoteExec.hpp sieht nach kurzem überfliegen gut aus.
Was hast du sonst am Server geändert?
-
Was hast du geändert?
Kannst du einmal deine CfgRemoteExec.hpp posten? -
Servus,
das Erdbeben ist ganz einfach umgesetzt mit einem integrierten Arma Befehl: https://community.bistudio.com/wiki/BIS_fnc_earthquake
Um den Wasserstand zu ändern gibt es eine Mod: https://forums.bistudio.com/topic/191713-t…fed-sea-levels/MfG
B4v4r!4n_Str!k3r -
Jetzt verstehe ich @Marcelinho erst richtig, er möchte Objekte so verschieben wie bei Distrikt41 die Tonnen bei der Chemiefabrik. Wie das aber Scripttechnisch funktioniert oder ob das mit Mods realisiert wurde, kann ich nicht sagen.
-
Du könntest irgendwelche Container nehmen und mit igiLoad kannst du diese aufladen und somit den Platz ändern.
-
Shinji, aber auch nicht public sondern nur für das jeweilige Projekt
-
Das wäre klasse, wenn ja würde ich mich freuen
du musst nur genügend Geld auf der Seite haben, dann rückt er das System heraus, habe ich vor kurzem gehört.
-
-
Oder so:
Edit: Link zum Wikieintrag: https://community.bistudio.com/wiki/playAction/actions#D
-
Zu den doppelten Einträgen: hier in Tutorial ist im life_server-Teil in der Datei fn_msgRequest.sqf
Code_queryResult = [_query,2,true] call DB_fnc_asyncCall; if(count _queryResult == 0) exitWith {}; {[1,_x] remoteExec ["life_fnc_smartphone",_player]; }forEach _queryResult;
doppelt vorhanden, was im Tutorial auf altisliferpg.com nicht der Fall ist.
-
Jep, einzig Auffällige wären die [lexicon]extDB[/lexicon] Logs, die Anzeigen: "[22:47:16 +02:00] [Thread 27207] extDB2: No Config Option Found: "
Was laut Lexicon auf einen falschen Prefix hinweist, dieser wurde aber nicht verändert. Nehme ich die PBOs vor der Bearbeitung, (ohne die extDB2.ini anzurühren), startet der Server ohne solche Fehler.Und in der Konsole natürlich: "22:47:16 "extDB2: Error with Database Connection"" als Meldung
Das Problem hatte ich einmal auch, als ich einen Fehler in meiner MasterHandler.hpp hatte und da vor dem [lexicon]extDB[/lexicon] Prefix in der description.ext die MasterHandler.hpp includet wird, siehe hier:
Bash: description.ext
Alles anzeigendisableChannels[]={{0,true,true},{1,true,true},{2,true,true}}; // Disabled text and voice for global, side, and command channels. disableChannels[] = {{channelID<number>, disableChat<bool>, disableVoice<bool>}}; #include "config\Config_Spyglass.hpp" #include "CfgRemoteExec.hpp" #include "dialog\MasterHandler.hpp" #include "config\Config_Master.hpp" class CfgServer { DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife] DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled) HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled) /* Enabled: When HeadlessSupport is set to 1 (enabled), the server will run without fault when no Headless Client is connected. However, it will support the Headless Client if you choose to connect one. Disabled: If HeadlessSupport is set to 0 (disabled), the connection of a Headless Client will make no difference. This option will increase server performance a TINY but negligible amount. */ }; .....
wird der [lexicon]extDB[/lexicon] Prefix nicht richtig an den Server übergeben.
Mein Fehler damals war, dass ich in der MasterHandler.hpp #include "smartphone.hpp" vor #include "common.hpp" eingefügt habe.Ob das bei dir jetzt genauso ist, kann ich nicht sagen. Jedenfalls andere
Da kann ich dir leider nicht helfen, kenne diesen Fehlern nicht.
wissen anscheinend auch nicht weiter. Und auch wenn es nur Vermutungen meinerseits sind, vielleicht ist das für dich ein nützlicher Denkanstoß.
-
mach am anfang der Random_Skin eine exitWith fertig
dan kannst du einfach in Altis Life dem Fahrzeug Farben zuweisen die dan auch gesetzt werden
An solch einfachen Dinge habe ich mal wieder nicht gedacht
Ich denke dann kann das Thema hier geclosed werden
-
Ich werde gerade nicht schlau aus dem Error der extDB2:
Spoiler anzeigen
[12:09:03:672083 +02:00] [Thread 12552] extDB2: Database Type: MySQL
[12:09:03:675083 +02:00] [Thread 12552] extDB2: Database Session Pool Started
[12:09:03:676083 +02:00] [Thread 12552] extDB2: SQL_RAW_V2: Initialized: ADD_QUOTES True
[12:11:59:066115 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:11:59:066115 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:12:23:755527 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:12:23:755527 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:13:08:513087 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'field list' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: INSERT INTO vehicles (side, classname, type, pid, alive, active, inventory, color, plate, impound, gear) VALUES ('civ', 'C_SUV_01_F', 'Car', '76561198101954416', '1','1','"[[],0]"', '8', '965650', '0', '"[]"')
[12:13:08:513087 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: INSERT INTO vehicles (side, classname, type, pid, alive, active, inventory, color, plate, impound, gear) VALUES ('civ', 'C_SUV_01_F', 'Car', '76561198101954416', '1','1','"[[],0]"', '8', '965650', '0', '"[]"')
[12:13:23:876966 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'field list' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: UPDATE vehicles SET active='0',impound='1', inventory='[[],0]', gear='"[[[],[]],[[],[]],[[],[]],[[],[]]]"', fuel='1' WHERE pid='76561198101954416' AND plate='965650'
[12:13:23:876966 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: UPDATE vehicles SET active='0',impound='1', inventory='[[],0]', gear='"[[[],[]],[[],[]],[[],[]],[[],[]]]"', fuel='1' WHERE pid='76561198101954416' AND plate='965650'
[12:13:39:099836 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:39:100836 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:43:460086 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:43:460086 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:48:000345 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:48:001345 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:51:801563 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:51:801563 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='1' AND side='civ' AND type='Car'
[12:13:55:101751 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:13:55:101751 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:13:59:140983 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error [mysql_stmt_error]: Unknown column 'impound' in 'where clause' [mysql_stmt_errno]: 1054 [mysql_stmt_sqlstate]: 42S22 [statemnt]: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:13:59:141983 +02:00] [Thread 16284] extDB2: SQL_RAW_V2: Error StatementException: SQL: SELECT id, side, classname, type, pid, alive, active, plate, color FROM vehicles WHERE pid='76561198101954416' AND alive='1' AND active='0' AND impound='0' AND side='civ' AND type='Car'
[12:27:55:689830 +02:00] [Thread 12552] extDB2: stopping ...Narf
Spalte impound in Datenbank wie im Tut beschrieben eingefügt?