Jump to content

Naiss

Member
  • Content Count

    430
  • Joined

  • Last visited

  • Medals

Everything posted by Naiss

  1. I would just create a new file called: initServer.sqf and then place all your server sided stuff into there
  2. Is it just me or does createVehicleLocal not working in MP anymore on the dev branch? Tested in SP and non-dev branch and it worked just fine. Report: https://feedback.bistudio.com/T142583 Can someone else confirm this?
  3. Naiss

    1.90 update - Troubleshooting

    already done that
  4. Naiss

    1.90 update - Troubleshooting

    Im still getting session lost
  5. Naiss

    1.90 update - Troubleshooting

    - Right click on Arma 3 in your Steam Library, then Properties - Select the tab BETAS - Enter the code Arma3Legacy188 then click CHECK CODE - Finally, still in this BETAS tab, use the dropdown list to select the branch legacy - Legacy Build (1.88)
  6. Naiss

    1.90 update - Troubleshooting

    So i just downgraded to 1.88 and now everything is fine but when I use 1.90 stuff just won't work, without v2 signature the server only has max 10 fps and tested with multiple people (everyone is getting 10 fps). With v2 people can't connect. 1.88 with v2 signature is giving the normal FPS and everything is just fine....
  7. Naiss

    1.90 update - Troubleshooting

    Removed cache.ch from the server and my own game folder, did not fix it but when I disabled signature checks its working but I don't really want that disabled 😛
  8. Naiss

    1.90 update - Troubleshooting

    Same issue here, this is one of the errors i can see in the RPT log: BEServer::finishDestroyPlayer(1167687731): users.get failed BEServer: cannot find channel #1167687731, users.card=0
  9. There seems to be an issue where people can execute stuff in SP and then somehow it will work in MP, like they can execute a cheat menu or something, not sure how it's done but I have had a few people do it this weekend on my server, is there anyway to disable this or a fix for this? Don't really have a lot of info on this but all I know is that they can pass some code in SP console and then it works on a server somehow
  10. How would someone change their Faction from west to civilian? Let's say I'm west now so when I use PlayerSide command it returns west but i wanna change that to return Civ without the player needing to change slot Thanks
  11. Naiss

    Change Faction

    I had the civilian placed down in the editor and ran the code on MP and there is no west or east units placed down, do i need to have west and east placed down or?
  12. Naiss

    Change Faction

    I ran your code in the debug console from the wiki that you added and before it displayed CIV when I use side player the first time but once I ran your code it showed east but not with playerSide, it does not seem to update the playerSide, it still does only return Civ when I use playerSide but side player returns east as it should if that make sense
  13. Naiss

    Change Faction

    Tested your code and it changes the "side player" result but it does not change "playerside"
  14. Naiss

    Change Faction

    I will test this later and check
  15. Naiss

    Change Faction

    I have a lot of codes that has playerside stuff and i just wanna find a simpler way to change side without needing to go into the lobby or change code
  16. Naiss

    Change Faction

    I saw that but then I saw killzone_kid said it would not change playerside result
  17. Naiss

    Change Faction

    So there is not really any simple way of doing this, i remember back in the arma 2 oa days where you should change by just changing the classname of the player if that make sense but then again you where not able to change your clothing etc like in arma 3 so i guess you can't really do it the same way
  18. I'm currently trying to learn how Extensions works and how to make them but I have an issue where I get the following error: CallExtension 'Exttest' could not be found I have tried making a mod folder and placed in @mod\Exttest.dll and I have tried to place it in the Arma 3 directory but still no luck. Here is the code: using RGiesecke.DllExport; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace Exttest { public class DllEntry { [DllExport("RVExtension", CallingConvention = CallingConvention.Winapi)] public static void RVExtension(StringBuilder output, int outputSize, [MarshalAs(UnmanagedType.LPStr)] string function) { outputSize--; output.Append("TEST OUTPUT! " + function); } } } I'm running a 64bit server and I have tried doing 32bit but the ext is made for 64bit
  19. Forgot to add that :P here is how: _output = "Exttest" callExtension "testing123"'; hint format ["T: %1",_output];
  20. From what I understood he wanted the code server sided and one function will not hurt at all.
  21. if you make it into function you can just publicVariable it and it can be server sided like this "ArmA 3\serversided\script.sqf"; //Script.sqf Function_Name = { //Script here }; publicVariable "Function_Name"; then you make a initServer.sqf in the mission file and add this: [] execVM "\serversided\script.sqf"; And add this into initPlayerLocal.sqf: [] execVM Function_Name;
  22. Naiss

    Helicopter loop

    You can always place down the helis in the editor and just select where you want it to fly with a "MOVE"
  23. Hello, I'm messing around in C# and I'm trying to get some info from ArmA 3 server like the number of players on the server, player list, etc. any idea how I would do this, any example code? Some sort of rcon like kick and ban with some player info
×