Jump to content

magaman

Member
  • Content Count

    54
  • Joined

  • Last visited

  • Medals

Everything posted by magaman

  1. magaman

    zues spawned objects error

    When ai, vics, etc is spawned in they always through an error. Anyone know why and how to fix? Tried on a blank map also and got the same. 5:08:39 Server: Object 6:28 not found (message Type_126) 15:08:39 Server: Object 6:29 not found (message Type_113) 15:08:39 Server: Object 6:30 not found (message Type_120) 15:08:39 Server: Object 6:31 not found (message Type_120) 15:08:39 Server: Object 6:22 not found (message Type_120) 15:08:39 Server: Object 6:32 not found (message Type_120) 15:08:39 Server: Object 6:33 not found (message Type_126) 15:08:39 Server: Object 6:34 not found (message Type_113) 15:08:39 Server: Object 6:35 not found (message Type_120) 15:08:39 Server: Object 6:36 not found (message Type_120) 15:08:39 Server: Object 6:37 not found (message Type_120) 15:08:39 Server: Object 6:38 not found (message Type_126) 15:08:39 Server: Object 6:39 not found (message Type_113) 15:08:39 Server: Object 6:64 not found (message Type_113) 15:08:39 Server: Object 6:41 not found (message Type_120) 15:08:39 Server: Object 6:42 not found (message Type_120) 15:08:39 Server: Object 6:43 not found (message Type_126) 15:08:39 Server: Object 6:44 not found (message Type_113) 15:08:39 Server: Object 6:45 not found (message Type_120) 15:08:39 Server: Object 6:46 not found (message Type_120) 15:08:39 Server: Object 6:47 not found (message Type_120) 15:08:39 Server: Object 6:48 not found (message Type_126) 15:08:39 Server: Object 6:49 not found (message Type_113) 15:08:39 Server: Object 6:50 not found (message Type_120) 15:08:39 Server: Object 6:51 not found (message Type_120) 15:08:39 Server: Object 6:52 not found (message Type_120) 15:08:39 Server: Object 6:53 not found (message Type_126) 15:08:39 Server: Object 6:54 not found (message Type_113) 15:08:39 Server: Object 6:55 not found (message Type_120) 15:08:39 Server: Object 6:60 not found (message Type_120) 15:08:39 Server: Object 6:56 not found (message Type_120) 15:08:39 Server: Object 6:57 not found (message Type_120)
  2. http://www.armaholic.com/page.php?id=25481 we use that with mapContent = 0
  3. I got the python script to stop, update then start the server.
  4. Yea well guess that would depend on which version of linux you are running. But hey now you know it will run on Python 2.7 with a couple of small changes. Now if there was a way to get it to run a bash file after updating i.e. ./server.sh start, it would be perfect.
  5. I fixed it: changed "from urllib import request to import urllib2 and response = request.urlopen("{}/{}".format(WORKSHOP_CHANGELOG_URL, mod_id)).read() to response = urllib2.urlopen("{}/{}".format(WORKSHOP_CHANGELOG_URL, mod_id)).read() Works great now, many thanks..........
  6. New error: Traceback (most recent call last): File "modupdate.py", line 157, in <module> update_mods() File "modupdate.py", line 104, in update_mods if mod_needs_update(mod_id, path): File "modupdate.py", line 84, in mod_needs_update response = request.urlopen("{}/{}".format(WORKSHOP_CHANGELOG_URL, mod_id)).r ead() NameError: global name 'request' is not defined
  7. That seems to have fixed it thanks.
  8. Running ubuntu 14 I get :: Downloading item 450814997 ... ERROR! Download item 450814997 failed (Failure). Server updating seems to work but not the mods......
  9. It would be nice to have that. It's been out for a while now.
  10. Also I have both udp and tcp open.
  11. So are you hosting this or is it a rented one? All computers have a lan/private ip and a public ip. Most home based routers don't support loopback which is why you have to use the lan ip. In a dos prompt do an "ipconfig /all" to get the lan ip in windows. Look for 192.something or 10.something. do that on the server. looks like you running a windows server.
  12. is this hc on same box as server? If so then try:add your port....and you have togive hc a name. start /affinity FF -client -connect=127.0.0.1 -port=? -name=hc -config=hc.cfg -cfg=basic.cfg "-profiles=C:\Users\*REDACTED*\Desktop\Experimental Server\steamapps\common\Arma 3 Server\HC_Profile" in server cfg you need to add lan ip localClient [] = {"127.0.0.1, 192.168.?.?"}; headlessClients[] = {"127.0.0.1, 192.168.?.?"}; see if that works.
  13. I had a simular issue and not that many players either. What worked for me was opening more ports. 2302 - 2332
  14. Other people can connect to you're server? I bet it's because you're router doesn't have loopback. What router do you have?
  15. maybe loopback issue try adding 192.whatever your local ip is to config headlessClients[]={"127.0.0.1, 192.168.1.111"}; localClient[]={"127.0.0.1"}; also in the mission you have a slot for him?
  16. try -connect=127.0.0.1 -port=2322 -name=hc
  17. make a keys folder (if not already there) inside the main arma3 folder and copy the keys into the folder. do not delete key from currect folder.
  18. try this: mods=@mcc_sandbox_a3\;@cba_a3\;@1stcav\;@rhs_afrf\;@rhs_usaf\;@ace\;@cup_terrains\;@task_force_radio\;@aliveserver\;@alive I think rhs doesn't need cba either acording to rhs. I remember in arma2 when we used alive it had to be last. Since it is the last mod loading put it last. Maybe the other mods won't load after alive.
  19. so only 4 of 10 mods are loading? Probley have to change load order due to dependency issue. Check mods for dependencies.
  20. Load your game with the mods then post pic please.
  21. file descriptors limits can be set in /etc/security/limits.conf
  22. I get those too but they work. cba supports it but the addon doesnt thats all thats saying, don't worry about those.
  23. Remove last \; to be like: mods=@cba_a3\;@1stcav\;@ace\;@alive\;@aliveserver\;@cup_terrains\;@rhs_afrf\;@rhs_usaf\;@task_force_radio\;@mcc_sandbox_a3
  24. for linux use mods=@life_server\;@jeep
×