Jump to content

=VG= SemlerPDX

VG Clan Member (Administrator)
  • Posts

    4,848
  • Joined

  • Last visited

Everything posted by =VG= SemlerPDX

  1. Welcome back! Are you running the latest version of Project Reality? (v1.6.3.4) If so, and you are still getting this error - check out all these answers of people reporting 'error 10060' on the Project Reality website, surely one of the solutions will help, and if not, create your own new post asking for help with error 10060: https://www.realitymod.com/forum/search.php?searchid=4113336
  2. Slightly off topic question (don't mind me Inch) - as I start diving into optimization of wee little programs I write like this voice control stuff, I sit here happy I didn't update my laptop to Win10, so I can test things I make in a Win7 environment (and a slower system at that) as well as in Win10 (on the computer I wrote the program(s) upon) - should I be using VM's for cross platform or optimizations testing of programs/scripts I write which are designed for public distribution? Is that what a proper programmer might do to ensure their thing works on an older build, or is running fast enough on a slower machine? Meaning, should I make a few VM's in both Win7 and Win10 with low/medium/high specs (using my high spec PC) to get loading time or run time tests for any ol' program I may write that relies upon speed? Was considering this for a long time, but didn't know if it was just too much work or if there was some other better way to do these sorts of things to eval the speed/optimization of a program/applet I wrote...
  3. Added to calendar (worst case scenario, if you don't get enough rsvp's, push it off one more week till the 12th)
  4. Well done, @=VG= Melon Muncher! Thank you very much!! (PR Sux ... a little less )
  5. lol - you could always just drop the "B"
  6. ↑ Teaching myself programming, I can at least concur that I have used very little "extreme math" in almost all the projects I've done. It all really comes down to logical problems like "if this then do that" in whatever syntax is required by a particular programming language. I think it's the most empowering thing you can learn with regards to computer work, since it can translate into personal projects as well as a career. When I need a simple task or tool for a VG server, I can just create it myself and have some new button or executable to instruct VG Admins to use. Took years to slowly learn, but when you are driven by personal motivation, it's much easier. Check out this, some programming can look like this and it's easy to look up any of these things online for more info once you know where to look. I'd say some of the craziest math in any of my programming projects merely amounts to number conversions, and for that, I simply googled my problem and had an example I could easily follow and apply to my needs: elapsedTicks = Math.floor(currentTicks - previousTicks) elapsedDays = TimeSpan.FromTicks(elapsedTicks).TotalDays elapsedMinutes = TimeSpan.FromTicks(elapsedTicks).TotalMinutes (programs can tell time in "ticks" which is a very accurate measure for elapsed time, where one millisecond is 10,000 "ticks" - here I use a previously save value of elapsed "ticks", subtracting the current "ticks" to get elapsed time, and then had to look up some maths on Google to convert that to seconds/minutes/days of elapsed time using pre-made functions embedded in the C# "Math" library). So, you can see here in this example that I didn't even "do" the math myself, I just used pre-made functions that are part of this programming language already. Later in that program above, I can recall the variables "elapsedDays" and "elapsedMinutes" to refer to how long the program has been used for (this is part of the timer for limited use beta tests, for control of my versions etc.) This is an example of a C# ("C Sharp") snippet from my voice control stuff -- this is the sort of stuff you may use in programming, some conversions and equations that turn one number into another, and unless you're creating physics engines, it's prolly not gonna get too deep on you. There are some people that can keep all this stuff in their head; personally I'm an amateur self taught tinkerer, and I pretty much rely on methods or snippets of stuff I find online and change/alter to my needs, or I use examples from previous works I've done that are similar (and again, change it up for whatever I'm working on at present). Like others have said here, programming is like working through logical problems to achieve a goal, so I personally think it's very rewarding (even if dull and boring at times) because it's essentially problem solving. Another example of the type of math that may be needed - I had a problem when I created my rotary dial controller for BMS, once it circled back around, all the numbers were wrong and the dial in-game jumped all around. I needed to correct that rotation to "reset" once it turned a full 360 degrees (back to zero) so it worked properly - and for that I had to apply some basic math, but nothing too extreme or crazy: //Correct Rotation within 360 deg. if (val < 0) { val = val + 360; }else if (val >= 360) { val = val - 360; } return val; This little function let me provide the value, and it returned the value corrected within a 360 degree range ... if it was too high, it subtracted 360, if it was below 0, it would add 360. Not so much hard math as logical problem to sort. I think it's important for you to sample a little bit of each of these jobs before you decide which one interests you enough to keep driving you forward, see what they do and what that looks like, and talk to more people in those fields if able. I hope we have some more career computer guys here with actual jobs in these fields who can post up advice. I had a personal passion to learn programming, because when I was a young man in my 20's with an interest in computers, someone told me, "You were bad at High School, you'll never be able to learn the math you need to learn computer programming". IF I COULD GO BACK!! I would only tell myself to dive right in, avoid certain types of programming that require calculus-levels of math, and focus on object oriented programming and application development. It's really not that hard once you get down the basics, everything builds on previous knowledge, so you start out small, and within a few years you are blazing through thousand line scripts to make your visions into functional reality.
  7. DAC for the win, brother! The only bot spawning script you should ever use. Highly polished around ten years of development. https://forums.bohemia.net/forums/topic/167033-dac-v31-dynamic-ai-creator-released/
  8. @Daqer Apologies, we have not been able to resolve this matter within our standard timeframe of 72 hours. Thank you for your patience. But I must say that I had requested additional information from you that would help me identify the matter that resulted in your ban from our server, yet you have not replied. We need a little more info, and we would need you to completely answer the questions we require of all players who become banned on VG servers. @Zadra Do you recall banning a player such as this? The log are sparse or I'm not seeing the correct logs... If we cannot locate the admin who banned this player, or any reason for them to remain banned, we will be removing this person from the banlist. Any help would be greatly appreciated. Thanks!
  9. Welcome! You're not the oldest around here, and not the youngest... you'll fit right in
  10. The VG Arma 3 Mission Framework has this feature. BLUFOR and OPFOR bots within visual spawn range will fight in 3D models that can be participated in, etc. -- but when there is no one within the visual spawn bubble, the fight continues, but in a digital sense (on paper) with units still moving, shooting, taking and losing ground (and units) until someone once again comes within visual spawn range, to where it switches back from a digital conflict to a fully modeled 3D conflict. This is very similar to the way our Falcon BMS dynamic campaign functions, and we just need to poke at @=VG= ciro until he gets this finalized and released for active play on VG Arma 3 Servers. It's 98% complete, last bug that needed to be squashed was a simple SQL database function, but I'm sure if we light a fire under his butt, he will hurry up and get this finished up for public testing here.
  11. IRL weapons such as RH packs feature, M-16's, A-4's, AK's, Glocks, Colts, Barrettas... all that. Same with vehicles -- Humvee's and BMP's, Longbows and Cows and Little Birds.... (basically, no future-puke shit) My 2 cents
  12. It's quite a bit more involved and complicated than setting bot ratio, as noted by some of the replies above. Maps for OPFOR COOP need to be changed on a per-map basis, and these changes are undone by PR Updates more often than not, requiring all that work to be redone each and every time. We've never been fond of the idea of running a second PR COOP server, especially for OPFOR COOP only, because we don't like the idea of splitting up the already waning player base of PR COOP between multiple servers. The idea has always been more of a public event day on the main VG PR COOP Server, and has been "OPFOR Fridays" in past. If it returns, it would likely follow that same idea.
  13. To all our American Veterans here, thank you for your service!
  14. Chernobyl, eh? hmmm.... I hear Somalia is nice this time of year. The poorly buried toxic waste that seeps into streams has such a beautiful apocalyptical glow at night. (just kidding, man! be safe, wherever you travel... looking forward to pics!)
  15. Once again, we do not currently run any scripts that make us any different than any other PR COOP server and we never have. Maplist Randomizer is a cool feature, for if/when the server crashes or restarts (far less of a frequent thing these days than in past, thankfully) but essentially we are the same and have been the same as every other server except for our well trained Admins and how we direct players to play with regards to our rules, and general game flow (forcing COOP to more closely follow Deployment rules rather than a free-for-all of squadless blueberries, etc.). Basically, we don't need gimmicks, and support overall the betterment of Project Reality itself as a whole. (I mean, Xeno has even shared his Randomizer, not many were interested tho anyway... w/e)
  16. I am not trying to shit all over your suggestion, brother! Misunderstandings are just that - innocent attempts to assist or to redirect to an appropriate venue for maximum result. Respectfully, we did not develop PR and I was under the impression that there WAS a command for unflipping vehicles, and that it was the 'flip' command noted. The people who did develop the game are ALWAYS the best place to suggest such improvements, and if this is an issue that needs attention, I imagine plenty of people would support such a suggestion. Since it is apparently not already a function on the PR server, feel free to discuss whether it should be included or not, again not trying to shut you down, but I do feel like you should bring this up with the folks who made the game.
  17. If it is a stupid game thing (driving on a flat plane, two ground segments intersect and appear fine to a person, but flip a vehicle like a game does), then it makes sense and is likely WHY this command exists, with the Rights Management definable by the Server License Holder to control use or misuse of it. Misuse might be an idiot driving over something a vehicle should not, and getting stuck - therefore using a command like this is almost cheaty and outside the spirit of a military simulation style game. BUT it certainly should function as intended, and this is the first I've ever heard of the flip command not being sufficient for unflipping vehicles, let alone any abuse of flip that would lead us to want to restrict it beyond the current "everyone" default setting. Games are games, and they can get gamey -- in Arma, we have other vehicles we can use or put on the server/mission to deal with such things.. mods or just scripted ... and also console commands -- PR doesn't quite have the leeway to do "whatever" like a sandbox to include immersive 'unflip' tool vehicles like a tow truck, helicopter sling/hook, and so there's that wall of what should be and what has to be to maintain functionality (even if it could also detract from the immersion or spirit of gameplay mode)
  18. In that case, I'd refer back to my original reply (since why should WE have the only functional flip (unflip) command in the PR community of servers out there?):
  19. Well, turnabout is fair play - I think you misunderstand my post. What is wrong with the current flip command? Why should it change? If you have an issue with a vehicle, you use the command, bing-bang-boom done. FYSA, !flip is available to everyone. edit: my bad, didn't realize PR did not have a vehicle flip command, confused this command with similar console commands for other games Is this maybe an issue where this command has been disabled by the PR engine but persists in our Rights Management commands list? Or is this a matter of you not knowing this command already exists to flip vehicles? Or is there yet something larger that I'm just not grasping here?
  20. I've got no record of a player by the name of Daqer ever connecting and playing on this server. I have no record of the ID 76561198147757869 in our BE logs, yet I can confirm that this ID is on the banlist. Do you use any other in-game player names? When did this occur? *(FTR, your unban request is not in the proper format at all, information such as date/time is typically required of course, yet this is due to the lack of unban requests forcing us to use a form system as we do for our Project Reality server). If you would like to Appeal your Ban, please provide the following information: 1. Banned Username 2. What Server(s)?* 3. When did this happen? 4. Reason you were banned 5. Describe the events leading up to your ban ( how did this occur and why? ) 6. Personal Statement ( Why should we unban you? ) *If this was an Arma server, include your GUID ------------------------- As a courtesy we look into all unban requests. The nature of the offense and the information you provide in your personal statement will determine the final outcome of your Appeal. We value honesty above all else. (the admin who banned you must also agree to the terms) We try to resolve all bans within 72 hours of the Appeal. All unbanned individuals will be placed on a watch list for 30 days. If any further issues occur during this time, your Ban will be reinstated and any future appeals will be denied...permanently. Thank you
  21. That is not a valid Arma 3 player GUID. Please try again. Bohemia wiki might be a good place to look
  22. I see no reason to restrict the use of this command beyond what it is right now. A suggestion like this really belongs on the PR website forums as a proper suggestion post. If any players are abusing in-game commands, you can feel free to use the !report function, or create a report here on our forums, and we'll take care of it. Telling us we have "a certain someone" abusing this feature as if you are somehow protecting(?) this person's identity for any reason is akin to allowing evil persist while good men (you) do nothing. If you have a problem, you can create a public report on our forums, or lodge a private report with Head Administrators such as myself, m823us, or MelonMuncher via private message. edit: there was a large misunderstanding where I had incorrectly assumed that Project Reality already had such a command. We've since settled this misunderstanding.
  23. We would need to know your PlayerID aka GUID for Arma 3 in order to investigate your ban on our server. How to find: https://steamcommunity.com/app/107410/discussions/0/366298942112947846
  24. @=VG= TEDF @=VG= Fastjack I've updated the VG DEV and EVENT servers just now. Should be good to go for tomorrow's PR Event. Any issues, let me know -- if you have a new file for public DL, shoot it my way and I'll add it to the VG Dropbox (way higher download / transfer limits than 'free' DB account). Cheers!
  25. Thanks for cracking out the update, Melon!
×
×
  • Create New...

Important Information

Terms of Use and Privacy Policy