Jump to content

zooloo75

Member
  • Content Count

    1973
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by zooloo75

  1. zooloo75

    How do you make a workshop addon

    Well, let's put it this way: If no one sees you do something wrong, is it still wrong?
  2. zooloo75

    Invasion 1944 V3.0

    Forgive my noobiness, but is the mod dead? :( Sent from my HTC One V using Tapatalk
  3. zooloo75

    Free Games

    https://www.humblebundle.com/ Grab all the Hitman games for under $10!!!
  4. It gets annoying when (as Belbo pointed out) everyone wants their own Life server but have zero technical experience, and I myself receive questions on Steam on how to set up SQL servers, yet they don't know what a query is... I refuse to offer help to them. Sent from my HTC One V using Tapatalk
  5. zooloo75

    Free Games

    Thanks, but I snagged it from the HumbleBundle already :P Sent from my HTC One V using Tapatalk
  6. zooloo75

    WMVCore.dll is missing

    Yep the media pack did the job, thanks! Sent from my HTC One V using Tapatalk
  7. I am unable to play the game. As soon as I launch it, nothing happens. No window pops up or anything; just an error message about a missing dll named WMVCore. I'm on Windows 8.1.
  8. zooloo75

    WMVCore.dll is missing

    It appears I downloaded the wrong file from the site. It works now!
  9. With that in mind, I should've kept this to heart, "Always code for the worst-case scenario."
  10. Paste your description.ext here or on Pastebin so we can get a better look on the issue. I suspect you may have the minimum player amount above 1.
  11. Set a few units to playable and you should be able to fill their positions. Sent from my HTC One V using Tapatalk
  12. Codename: Overwatch (Real title in the works) To Be Announced Multiplayer Real-Time Strategy Gamemode Think of the gameplay from World in Conflict (http://en.wikipedia.org/wiki/World_in_Conflict) Will be addon-free Development begins Saturday.
  13. Did you set any units to "Playable" via editor?
  14. zooloo75

    [PvP] Airsoft: Bring Your A-Game

    Is everyone busy pretending to be cops and playing dress-up? What's going on with multiplayer?
  15. zooloo75

    WMVCore.dll is missing

    Unfortunately, no luck :(
  16. zooloo75

    [PvP] Airsoft: Bring Your A-Game

    Thanks! Now I just need players :k: ---------- Post added at 05:38 PM ---------- Previous post was at 05:22 PM ---------- If anyone would like to host the mission on their server, feel free to drop the server info here and I will put it in the main post. A Gametracker banner is preferred!
  17. It all depends on the functions being ran or the commands you use within a loop. Certain functions take time to process and looping them continuously with little time between each call will eat up performance. It is more efficient to go event-based for performance-heavy calls; calling only when needed. Looping with no delay will flood the CPU with redundant instructions, eating up time that can be spent on other useful executions. For example, executing "hintSilent" infinitely fast is pointless due to the player not needing or seeing all the updates that take place sub-frame, due to their framerate and other factors. If you need something to update rapidly, take the client's framerate into account. You can also use "waitUntil" to pause a script until a certain condition is met, this removes the uncertainty of a sleep duration as code execution time may vary beyond the expected sleep time. Also keep in mind the difference between "call" and "spawn". Calls will wait until the resulting function completes execution or returns a value before executing the next statement. Spawns run code asynchronously (similar to execVM or a new thread) and will execute the next statement in your script regardless if the spawned code has completed execution. Regarding your code; let's say the server is lagging as a reward is being sent to players, the arguments are the amount of gold and the box object. Some players may not receive the packet in time and the _box object will be null as it has been deleted before they could get the packet containing the reward. This results in a possible script error (due to an undefined var - _obj), possibly bugging their money received, or even corrupting their own money variable, depending on your code. A possible solution is to reposition (teleport) the box away (perhaps to [0, 0, 0]) and delete it after a minute (which should be plenty of time for clients to receive the packet(s) and execute their code). I recommend reading into Big-O so you can better understand the efficiency of algorithms based on the size of the input received: http://en.wikipedia.org/wiki/Big_O_notation I hope this helps.
  18. zooloo75

    WMVCore.dll is missing

    Thanks, I'll try this once I get home!
  19. zooloo75

    [PvP] Airsoft: Bring Your A-Game

    Update: Credits are now persistent!
  20. zooloo75

    [PvP] Airsoft: Bring Your A-Game

    Can a moderator rename the thread to "[PvP] Airsoft: Bring Your A-Game" **Yes we can** Decided that airsoft made more sense than paintball for this mission.
×