Jump to content

Vadym Mazur

Member
  • Content Count

    27
  • Joined

  • Last visited

  • Medals

Community Reputation

5 Neutral

About Vadym Mazur

  • Rank
    Private First Class

Profile Information

  • Gender
    Male
  • Location
    Ukraine

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Vadym Mazur

    execVM for all players

    Thank you for detailed reply
  2. Vadym Mazur

    execVM for all players

    "script.sqf" remoteExec ["execVM",2]; ?
  3. Vadym Mazur

    execVM for all players

    Don't offer to do it: { if(isPlayer _x) then { _x createDiarySubject ["Hello","Everybody"]; }; } forEach allUnits; The script run to the players upon certain players actions
  4. Good evening. I'm trying to call execVM for the players. Where is the mistake? fn_init.sqf { if(isPlayer _x) then { [_x] execVM "script.sqf"; }; } forEach allUnits; script.sqf _unit = (_this select 0); _unit createDiarySubject ["Hello","Everybody"];
  5. Task does not have to be selected to complete it
  6. Vadym Mazur

    Addtional map legend markers

    It’s possible only via mod?
  7. Good day. Its possible add more markers for map legend server-side? Im trying create foulder "icons" and put inside image.paa description.ext class CfgMarkerClasses { class NewMarkers { displayName="New Markers"; }; }; class CfgMarkers { class image_simple { name="Marker name"; icon="icons\image.paa"; color[]={1,1,1,1}; size=32; shadow=0; markerClass="NewMarkers"; }; }; Thanks in advance
  8. I think you must set the location of each house manually and when script running detect house type and place box.
  9. Vadym Mazur

    Integrate Simple MapTools

    Tried to contact you via Twitter. Already paid for your cup of coffee. I want to integrate it into the server so that users do not need to download add-ons from the workshop "Simple MapTools" more simple than "MapTools Remastered". This is quite enough for my server
  10. Hi everyone, I found a mod "Simple MapTools" https://steamcommunity.com/sharedfiles/filedetails/?id=2013446344 in the workshop and would like to add it to the server. I try to add this code to initPlayerLocal, but nothing happens. Thanks in advance.
  11. Vadym Mazur

    Enable Create group

    Im sorry, i mean Disable 🙂
  12. Vadym Mazur

    Enable Create group

    How to enable create groups for player? Tnx.
  13. { _rankRating = _x getVariable "rankRatingServer"; _x setVariable ["rankRatingServer", _rankRating+1]; } forEach units group player; Hi everyone, its possible setVariable for each players in group?
  14. Also dialogs.hpp line 52 w=0.13*safezoneW and line 95 y=0.347*safezoneH+safezoneY add ; in the end
  15. Found some mistake in vOut.sqf private _eh=["KeyDown","if(!r_dn_ && _this#1 in(actionKeys'pushToTalk'+actionKeys'pushToTalkDirect'+actionKeys'pushToTalkGroup'+actionKeys'pushToTalkVehicle'+actionKeys'pushToTalkSide'+actionKeys'pushToTalkCommand'))then{'[]call r_dn}"]; Delete '[]
×