Jump to content

He-Man

Developer
  • Posts

    808
  • Joined

  • Last visited

  • Days Won

    63

Posts posted by He-Man

  1. @Prae, for Markers, I have a simple Script for you.

    Just add the coordinates and run it server side.

    The SafeZones will get numbers in the same order as the array (Safe Zone 1 / Safe Zone 2/...)

    Spoiler

    _safeZones = [
        [xxx,yyy,zzz],
        [xxx,yyy,zzz],
        [xxx,yyy,zzz]
    ];
    _c = 1;
    {
        _marker = createMarker [('Safezonemarker'+(str _c)+'1'), _x];
        _marker setmarkertype "empty";
        _marker setmarkercolor 'ColorGreen';
        _marker setMarkerSize [250,250];
        _marker setMarkerShape "ELLIPSE";
        _marker setMarkerBrush "Grid";
        
        _marker = createMarker [('Safezonemarker'+(str _c)+'2'), _x];
        _marker setmarkertype "mil_warning";
        _marker setmarkercolor 'ColorRed';
        _marker setMarkerSize [1,1];
        _marker setMarkerText ("Safe Zone "+(str _c));
        _c = _c+1;
    } forEach _safeZones;
     

    @Sp4rkY could add it to his Script, if he want.

  2. Could, that the Addaction is loaded to fast.

    Try:

    waituntil {!isNull player};
    waituntil {time > 25};
    waituntil {alive player};
    waituntil {getPlayerUID player != ''};
    waitUntil {!isNull (findDisplay 46)};
    waituntil {typeof player in ["Epoch_Male_F","Epoch_Female_F"]};
    waituntil {!isNil "Epoch_my_GroupUID"};

    uisleep 2;

  3. So aus der Ferne leider nicht.

    Ich würde wie bereits gesagt zunächst prüfen, ob der Vehiclelock in der DB richtig gespeichert wird.

    Dann würde ich nach dem Restart noch einmal rein gucken.

    Vehicle Slot des Fahrzeugs auslesen - VehicleLock dieses Slots prüfen - Das Serverseitige Unlock Script mal schritt für schritt nachvollziehen - Manuell ein Script basteln, dass den "owner" aus der Datenbank ausließt (muss Serverseitig gemacht werden und dann mit publicvariable übergeben oder als diag_log in den Log schreiben lassen).

    Hast Du denn noch andere Addons installiert? Alles richtig upgedated?

     

  4. 17 hours ago, Pvpmedic said:

    Ok so its working now if I push F4 but if i get into a vehicle they do not auto insert and remove getting inside vehicle then back out nothing happens.

     

    Problem still persist or fixed?

    The script should work.

    If not fixed, I would load me later your mission again from your Server and check.

  5. 1 hour ago, Pvpmedic said:

    Yes it says antihack enable True

    Here is my init.sqf

    if (isserver) then {

          [] execVM "mybuildings.sqf";
          [] execVM "andre_convoy.sqf";
          [] execVM "addons\Ignatz_Client_StartScript.sqf";

    };

     

    I just added your script to it.

    Change your init to:

    Spoiler

    if (isserver) then {

          [] execVM "mybuildings.sqf";
          [] execVM "andre_convoy.sqf";
    };

    if (hasinterface) then {
          [] execVM "addons\Ignatz_Client_StartScript.sqf";
    };

     

×
×
  • Create New...