Jump to content

GregRUS

Member
  • Content Count

    39
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by GregRUS

  1. Hello. Maybe someone knows... Is there any way to get values from arma UI settings? Like screen resolution or gamma?
  2. GregRUS

    Arma2Net - MySqlPlugin

    Just load some variables with login/pass on serverside from external sqf... for example: Make serverVars.sqf and put it inside your arma2 server dir with vars in it like DBLogin = "username"; DBPass = "password"; Then on mission init if (isServer) then { _exFile = loadFile "serverVars.sqf"; _compExFile = compile _exFile; call _compExFile; }; BTW I'm not recommend you to use Arma2Net + MySql. Better way is to use jayarma2lib and arma2mysql (https://dev-heaven.net/projects/arma2-mysql). Or write some clipboard handle application.. and copy/paste data with builtin arma functions... thats very easy, allows you to transfer data size > than 4kb and much stable of course :)
  3. Nice feature.. but all this I saw in network traffic dump... now its just more comfortable.. The only way I 100% catch the hackers on my little server is own DLL that required to join server and acting like a PBSS - just sending screenshots to server ftp... BTW.. battleye even doesn't detect this inject... and adding this feature to BE will be awesome protection!
  4. Found and fixed plenty bugs in Chernarus .90 version... From syntaxis to script errors... some of them are inherited even from earlier versions... But anyway big big thanks for your awesome job! And fire your testing team ;)
  5. Didnt understand what you are trying to do... But instead if your loop you can do this: waitUntil {!alive player}; Also you can add some small amount of sleep like: waitUntil {!alive player; sleep 0.1}; Dont forget to execute this command in another thread or your script after this command will be frozen until player is dead. To execute in another thread: [] spawn { waitUntil {!alive player; sleep 0.1} };
  6. Is there will be any pre-release versions for missions/addons developers?
  7. Same error! 3:50:52 BattlEye Server: Update successfully completed. Restarting... 3:50:52 BattlEye Server: Initialized (v1.127) 6:44:35 BattlEye Server: Received invalid data from BE Master (6) 6:44:35 BattlEye Server: Update attempt failed
  8. Oh My God!!! Awesome! Good job.. and doesnt matter if its the last patch for ArmA II !!:)
  9. Hello! I have a problem with some players that have quotes (" or ') in their nicknames. Some scripts showing errors cause of this quotes and wont exec. Is there any solution for that?
  10. GregRUS

    DSutils v2 release (signatures)

    have a problems with v2 sign. Addons packed with cPBO and signed with DSUtils2 rejected by the server with wrong signature. Addons packed with BinPBO and signed with DSUtils2 are good.. but some of addons wont work after BinPBO repack (even without binarize) - for example "celle" island... it says about missing \ca\celle\celle.wrp when I start the server.. also there is no island visible even in editor... Also signs v2 for almost every old addons wont work without repacking with BinPBO Maybe I missed something? P.S. of course I placed .bikey file in arma2\keys directory.
  11. Hello! Is there any public tool that can change all variable names to a random set of characters and keep all dependencies inside the mission? Saw that in valhalla pbo and rp-mods mission. Tried to binarize with makepbo (Eliteness).. its easy to depbo and you can see all the scripts easily even with notepad :)
  12. The question is not about a lesson... I will try to help everyone who ask! But some shi**y ppl alway try to steal part of my scripts... just want to protect it from them! Also they never asked me... acting like a rats :) Thats why I want to make my finished mission hard readable from them!
  13. Is there a players list array command? like list players or list west... ?
  14. Thats it! Thank you! )
  15. How to get variable or something to know if player is carried by another player?
  16. Some hackers are bypassing BattlEye init and "freeze" servers! Just look at this log (ID and config): 22:06:27 Player Hendrik connected (id=9121412Hendrik). 22:06:27 Hendrik uses modified config file - ?.?? And battleye cant do anything... no GUID or IP in arma logs... So their BE initialisation is delayed and they have enough time to do anything with the server... So I used -netlog and blocked his ISP IP range... ArmA II Admins - be careful, this player took down 3 servers today (maybe even more)!!!
  17. It means you are already using the script that have "nil = ..." variable If true - you must have the same problem in warfare missions in construction mode!
  18. As I wrote in my post - "their BE initialisation is delayed"! So we dont have GUID or BE reported IP! The only thing is NETLOG with their IPs! This hacker took down 3 servers and admins of this servers reported the same! I looked at the forums of famous arma 2 hack site and saw topic named: "Battleye unbanner and disabler tutorial"! So! Hackers have about 1-2 minutes disabled BE before they got kicked with "BattlEye initialisation failed" message! And also they can use their modified PBOs to hack the server! Hacker named "Hendrik" had IPs in my netlog: 84.140.180.27 84.140.220.6 etc... So I blocked IP range 84.140.*.* Yes I know - thats too agressive but I dont had another choice! Our [sUB7]OA/CO servers are popular and it looks like a great target for some dirty hackers... Also I wrote some serverside script that counts configpatches number and writes their numbers to log files... so thats a little solution to detect some "hack menus" in client action list!
  19. Hello! Today I installed 1.55 patch on my warfare server. Some people can play but many people just auto-kicked from the server with: wrong signature for file BAF\Addons\dubbing_baf.pbo Patch forgot to copy the server key file??? I had ArmA II: Combined Operations patched to v1.54 Any solutions?
  20. Download BAF 1.01 HOTFIX!!! http://www.arma2.com/latest-news/arma-2-british-armed-forces-update-101-hotfix.html
  21. But it means that anyone can use hacks on your server by modifying pbo files... so its not recommended to disable sig check!
  22. You mean uninstall BAF on client PCs? So no solutions to fix it for serverside? :o
  23. Is there any way to run this module serverside only? Without client-side JTD addon?
×