Jump to content

All my products and services are free. All my costs are met by donations I receive from my users. If you enjoy using any of my products, please donate to support me. My bare hosting costs are currently not met so please consider becoming a contibuting member by either clicking this text or the Patreon link on the right.

Patreon

Adultery

GameEx Author
  • Posts

    10152
  • Joined

  • Last visited

  • Days Won

    159

Everything posted by Adultery

  1. I can confirm that is set in the command line switches, so I don't think that's it. Quick Edit: Wait... Maybe that was skip_disclaimer not skip_gameinfo ... Now I gotta check when I get home. Thanks!
  2. If only I had that problem... None of my MAME games seem to be able to bypass the info screen. Maybe I need to update? Or isn't there a utility that sets a cfg for each so I can bypass info and warning screens altogether? It's like GameEx isn't typing OKOKOKOKOK in VK for some reason on my XP machine.
  3. Adultery

    42+

    Brian: Sorry, I didn't know that the Wizard did all that. It's been a loooong time since I set up my GameEx, and unfortunately I tend to use the Advanced Config option. My brother asked me the same thing and I thought that was the only way. If I only knew now what I knew then...
  4. @Kaze: Thanks for the help! To my dismay, I was a little more off than I thought. My array skills look like they need touching up somewhat. The Bubble Sorting was something I figured needed to be employed, I just needed to hear it from someone else. After all, we learned methods to use instead of bubble sorting, so why not use the supposedly defunct method for the assignment? hehheh! I really appreciate your guidence, wise one! As for your cookie... <?php $user = $_POST['user']; $color = $_POST['color']; $self = $_SERVER['PHP_SELF']; if( ( $user != null ) and ( $color != null ) ) { setcookie( "firstname", $user , time() + 86400 ); // 24 hours setcookie( "fontcolor", $color, time() + 86400 ); header( "Location:cookie2.php" ); exit(); } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"> <title>Stuff by tedd</title> </head> <body> <h1>tedd's cookie stuff</h1> <hr> <form action ="<?php echo( $self ); ?>" method = "post"> Please enter your first name: <input type = "text" name = "user"><br><br> Please choose your favorite font color:<br> <input type = "radio" name = "color" value = "Red">Red <input type = "radio" name = "color" value = "Green">Green <input type = "radio" name = "color" value = "Blue">Blue <br><br> <input type = "submit" value = "submit"> </form> <br/> <hr> </body> </html> </html>Thanks again! I owe ya one!
  5. You guys are right. Ambiance pauses for gameplay. The other option is to loop it on a playlist... At least currently. Ambiance is made available more for the GameEx GUI, not the emulator. I don't suppose it would be too hard to impliment a playlist feature the way GameEx can play mp3s while gaming, but at current both are not possible. It's either/or for you my friend. @Kaze: Nice user tags! The GameEx one is cool as hell! This place feels a bit more like MaxConsole every day.
  6. Adultery

    42+

    You have to edit the ini directly instead of using the manager.
  7. Hi! Yeah, I'm working on the logic, tables and pseudocode. The logic is supposed to be the easy part! Haha! Supposedly it's more technoque than the actual compiling. My last unit assignment was easier. For example: private numeric contractNumber private numeric customerIDNumber private numeric vehicleIdentificationNumber private numeric startMonth private numeric startDay private numeric startYear private numeric agreementLength private numeric endMonth private numeric endDay private numeric endYear private string insuranceIndicator public numeric getContractNumber() return contractNumber public numeric getCustomerIDNumber() return customerIDNumber public numeric getVehicleIdentificationNumber() return vehicleIdentificationNumber public numeric getStartMonth() return startMonth public numeric getStartDay() return startDay public numeric getStartYear() return startYear public numeric getAgreementLength() return agreementLength public numeric getEndMonth() return endMonth public numeric getEndDay() return endDay public numeric getEndYear() return endYear public string getInsuranceIndicator() return insuranceIndicator public void setContractNumber(numeric number) if number < 10000 OR number > 99999 print â??Error message: Invalid contract numberâ? else contractNumber = number endif return public void setCustomerIDNumber(numeric number) if number < 100 OR number > 999 print â??Error message: Invalid ID numberâ? else customerIDNumber = number endif return public void setVehicleIdentificationNumber(numeric number) if number < 100 OR number > 999 print â??Error message: Invalid vehicle identification numberâ? else vehicleIdentificationNumber = number endif return public void setStartingDate(numeric month, numeric day, numeric year) numeric todayMonth = this month numeric todayDay = this day numeric todayYear = this year if year = todayYear AND (month < todayMonth OR (month = todayMonth AND day < todayDay)) OR year < todayYear print â??Error message: Invalid starting dateâ? else if day < 1 OR day > 31 OR (month = 2 AND day > 28) OR ((month = 9 OR month = 4 OR month = 6 OR month = 11) AND day > 30) print â??Error message: Invalid starting dateâ? startDay = 0 startMonth = 0 startYear = 0 else startDay = day startMonth = month startYear = year endif endif return public void setAgreementLength(int days) if days < 1 OR days > 30 print â??Error message: Invalid agreement lengthâ? else endDay = startDay + days endMonth = startMonth endYear = startYear if (endDay > 31 AND (startMonth = 1 OR startMonth = 3 OR startMonth = 5 OR startMonth = 7 OR startMonth = 8 OR startMonth = 10 OR startMonth = 12)) endDay = endDay - 31 if (startMonth = 12) endMonth = 1 endYear = startYear + 1 else endMonth = startMonth + 1 endif else if (endDay > 30 AND (startMonth = 4 OR startMonth = 6 OR startMonth = 9 OR startMonth = 11)) endDay = endDay - 30 endMonth = startMonth + 1 else if (endDay > 28 AND startMonth = 2) endDay = endDay - 28 endMonth = startMonth + 1 endif endif endif endif return public void setInsuranceIndicator(string insuranceIndicator) if insuranceIndicator not equal â??Yâ? OR insuranceIndicator not equal â??Nâ? print â??Error message: Invalid indicatorâ? else this.insuranceIndicator = insuranceIndicator endif return endClass
  8. So hey everyone. Hope all is well. This is way off topic, but I figure there's a few programmers who hang here that could help me to understand this a bit better. I'm taking a Programming Logic class, and I think I'm in over my head. I was hoping someone could help me with some very basic skills and tell me what I'm spacing out here. Thanks in advance for your help everyone! I think I need to employ a Bubble Sort, which is horribly inefficient but easier to understand. Not sure. If you're feeling brave, here's the next part of my assignment. Try your hand at that. If this sounds like it's too complicated, I'll gladly show you what I have but I have a feeling what I have is completely wrong. Thanks!
  9. Yeah, but that's half the fun! Or if you're nuts about it like I am, 75% of the fun! As a KEGA User the only time I had any lockups was when I was using a bad BIOS.
  10. Cool! Nice to see people making GameEx even more international!
  11. Happy turkey day everyone! Enjoy showing your cab off this holiday!
  12. These options are under the emulator's advanced setup.
  13. I'm pretty sure that PNG is supported. You got the logos in the right place, it's just about the naming really. Unfortunately, you have to make the PNG or JPG name match the EXE name, and movies are not supported at this time.
  14. Most of us got through it using google...
  15. Don't sweat it gerble, just complaining in general. I don't like you any less for cheating... I just won't play you online.
  16. Okay... Heh! I did use CWCHEAT for Manhunt 2 to remove the blurred executions, but now that I have a patched version I have promptly removed it from my MS. I'm all for mixing up the game and being able to play as the bosses in SF, or even fool around and do the 'moon jump' right over the flagpole on SMB, or trying to create that 'infinite funds' code for the SNES version of Sim City... But it seems like the kids today just want to win now, instead of earning it the old fashioned way. I locked myself in my room for THREE WEEKS trying to beat Metal Gear!!! Hell, I spent almost a month on Ultima! I don't think I EVER beat Super Mario 3 all the way through without warping... Does Galaxian even have a last level? I'll never know!! Two full rolls of quarters for TMNT... Now THOSE were the days!
  17. Guess I'm just old fashioned that way... I'd rather lose 300 lives than apply the 'infinite lives' cheat... Otherwise, what's the point? I wanna feel like I accomplished something when I beat the game... Maybe that's just me.
  18. I dig that avatar! :)

    1. jthompson

      jthompson

      Thanks (7 years later) LOL. I'm back for the ®evolution!

  19. That's why I hate games like this. No amount of training will make me look like less of a noob than these guys with auto-aim bots and such. Hell, I can't even get in a good game of pool in anymore cuz there's people with aim bots to assist them on every shot. Then you got CWCHEAT for PSP, and I can't play ANY games unless it's ad-hoc because there's no point in it... Malarchy! I guess I'll have to stick to private servers and steer clear of these FPS games that everyone seems so intent to cheat on.
  20. These are cool! Now I can retire my set in peace knowing there's another set of logos out there. Thanks, Nologic!
  21. I just bought a single license OEM for XP to complete a repair job I was doing from NewEgg for about $75 shipped. That's the best route in my personal opinion.
  22. You use MESS to emulate Vectrex. There should be an INI already in the setup if I'm not mistaken...
  23. I don't think the build number is as important. Tom has always implimented new features as they became available, so there's nothing to stop him from implimenting, say, the search feature in build 8.90 or wha have you. I don't recall anyone saying anything revolutionary is going to be distributed in build 9...
  24. I thought MESS compatibility was flawed and for whatever reason Vectrex overlays don't work anymore? I'm like 99.9% sure about this as this was the case in 0.106 MESS.
  25. I like these logos. I'll have a go at them and see what I can come up with. The actual taking of the screenshot is the tedious part however. We'll see what I can do.
×
×
  • Create New...