Re: looking four q9 action game

2017-08-12 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Garret, it's not that simple. Nvda addons have to be open sourced as per the gpl. Plain and simple. At least the modules that nvda uses directly. It's why, this isn't an addon but, any game that uses the nvda controller client dll includes a copy of the gnu gpl. Because the dll is licensed under gpl. Btw, check your pm's again, Orco.

URL: http://forum.audiogames.net/viewtopic.php?pid=324051#p324051





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-12 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

@Jack, Check your PMs

URL: http://forum.audiogames.net/viewtopic.php?pid=324048#p324048





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-12 Thread AudioGames . net Forum — General Game Discussion : shotgunshell via Audiogames-reflector


  


Re: looking four q9 action game

About NVDA addons having to be open sourced, technically they'd only have to be open sourced if you wanted them included on the NVDA community addons page. You could close source it if you just wanted to host it on your own site, which is what Leacy does anyways. I heard something from someone that a while ago, they said that if people donated enough, they would consider an NVDA addon, but I could be wrong about that, someone will have to remind me.

URL: http://forum.audiogames.net/viewtopic.php?pid=324041#p324041





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Yeah, not sure what's up with Entombed development, haven't heard much from Jason in the last 2 years give or take. Not much details of this new Leasey title have surfaced as of yet. Check your pm's.

URL: http://forum.audiogames.net/viewtopic.php?pid=323970#p323970





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Not to dispute what you've said, because there was an update recently, but I'd hardly call a version 3.2 to 3.3 a major update, now if they'd released version 4.0, then I'd call it a major update.Now that you mention it I do believe the new game is a fantasy role playing game and those things don't happen overnight. Just look at what happened to Entombed, for the longest time there was rumor of a version 2 and there was even an alpha floating around for a while, but the web site has had version 1.20j as the official release for about five years now. Personally I think that development on Entombed died out long ago.Check your PM

URL: http://forum.audiogames.net/viewtopic.php?pid=323965#p323965





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Technically this blurb about the ambitious fantasy game was posted in March of 2016, at least as far as the Audiogames forum is concerned. Nevertheless, almost a year and a half, so Orco your point would still stand about it being a considerable wait, although for all we know the game may've been put on the backburner while Leasey had its major update this year.

URL: http://forum.audiogames.net/viewtopic.php?pid=323961#p323961





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Lulu said they have a major game under development, but once that game is well into development stages, they will give some serious thought to a stand-alone games module. Lulu is the head of game design over at Hartgen Consultancy. Anyone who wants proof, here's the sourcecode. When using Jaws, without the Keyhook installed, you will need to use the passthrough command to down arrow to initiate keyhook, which by default is insert+3. Once the keyhook is initiated, you can happily arrow your way through the menu with no problem, but try launching another game that doesn't have the keyhook installed, and it won't work.#include "dynamic_menu.bgt"void main(){show_game_window("keyhook manager");tts_voice voice;dynamic_menu menu;menu.add_item_tts("initiate keyhook");menu.add_item_tts("destroy keyhook");menu.add_item_tts("exit");int choice; //stores our choice sele
 ctionsdo{choice=menu.run("Keyhook manager ready. Choose an option with the up and down arrow keys, and press enter to select.",true);if(choice==1){voice.speak("Keyhook initiated.");install_keyhook();}else if(choice==2){voice.speak("Keyhook destroyed!");uninstall_keyhook();}}while(choice!=0 and choice!=3);// The user pressed escape or chose the exit option.exit();}

URL: http://forum.audiogames.net/viewtopic.php?pid=323947#p323947





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Lulu said they have a major game under development, but once that game is well into development stages, they will give some serious thought to a stand-alone games module. Lulu is the head of game design over at Hartgen Consultancy. Anyone who wants proof, here's the sourcecode.#include "dynamic_menu.bgt"void main(){show_game_window("keyhook manager");tts_voice voice;dynamic_menu menu;menu.add_item_tts("initiate keyhook");menu.add_item_tts("destroy keyhook");menu.add_item_tts("exit");int choice; //stores our choice selectionsdo{choice=menu.run("Keyhook manager ready. Choose an option with the up and down arrow keys, and press enter to select.",true);if(choice==1){voice.speak("Keyhook initiated.");install_keyhook();}else if(choice==2){voice.speak("Keyhook destroyed!");uninstall_keyhook();}}while(choice!=0 and choice!=3);// The user pressed escape or chose the exit option.exit();}

URL: http://forum.audiogames.net/viewtopic.php?pid=323947#p323947





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

If you mean the universal keyhook manager, that would be free, of course. Now that I mention it, I am attempting that myself. Sure, it would be an extra window in your alt+tab list, but I'd say it worth it, far less annoying than constantly killing your screenreader to play games.

URL: http://forum.audiogames.net/viewtopic.php?pid=323939#p323939





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

It must be a hell of a game as they've been saying that for about two years now.I put it in the same basket I put other promised games that never came to be.In other words, I'll believe it when it actually happens.

URL: http://forum.audiogames.net/viewtopic.php?pid=323950#p323950





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Well, just coded this thing, and looks like it won't do us any good. Looks like the keyhook only applies to the active window, just as I thought. So the answer is no, unfortunately a universal keyhook is not an option, unless we can get it to apply system-wide. The solution would be for Hartgen to add the keyhook into their games.

URL: http://forum.audiogames.net/viewtopic.php?pid=323942#p323942





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Lulu said they have a major game under development, but once that game is well into development stages, they will give some serious thought to a stand-alone games module. Lulu is the head of game design over at Hartgen Consultancy.

URL: http://forum.audiogames.net/viewtopic.php?pid=323947#p323947





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

I don't mind having to switch to NVDA to play a game that won't play nice with JAWS. For self voiced games or games that can use SAPI, I just configure JAWS to go into suspend mode and all is fine.For those games that need a screen reader to provide their voice, if they won't work with JAWS, then I just switch to NVDA while playing the game.So the only real problems are the Hartgen specific games written in BGT and using the JAWS specific API to provide their voice.From my own discussions with them,Hartgen's view is that since the keyboard hook conflict doesn't affect them, there's nothing to fix. And they'd only entertain having the games rewritten to use the universal text to speech APIs that use SAPI or work with any screen reader would only occur if they decided to release the games module as a stand alone package that doesn't rely on JAWS or Leasey, and frankly with their attitude towards the keyboard hook problem, 
 I just don't see that happening.

URL: http://forum.audiogames.net/viewtopic.php?pid=323945#p323945





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Well, looks like the keyhook only applies to the active window, just as I thought. So the answer is no, unfortunately a universal keyhook is not an option, unless we can get it to apply system-wide. The solution would be for Hartgen to add the keyhook into their games.

URL: http://forum.audiogames.net/viewtopic.php?pid=323942#p323942





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

If you mean the universal keyhook manager, that would be free, of course. Now that i mention it, I am attempting that myself. Sure, it would be a n extra windows in your alt+tab list, but I'd say it worth it, far less annoying than constantly killing your screenreader to play games.

URL: http://forum.audiogames.net/viewtopic.php?pid=323939#p323939





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Yeah, that would work, and I'd be willing to pay for it if it worked.

URL: http://forum.audiogames.net/viewtopic.php?pid=323932#p323932





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Probably isn't universal. True, you could keep AAC running to keep the keyhook going, but that would be sacrificing more cpu power if you plan to play other games. What there needs to be is a bgt script/executable that, when launched, will install the keyhook universally. When the game is done being played, you can simply quit that executable via task manager. Better yet, assign a system-wide keyboard command to install/uninstall the keyhook that you can execute right before and after launching and exiting the program respectively. That could then make the Leasey games play just fine.

URL: http://forum.audiogames.net/viewtopic.php?pid=323914#p323914





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

I don't know if this will work, but I'm going to try it because I'm interested in both the Match Maker and My Country Place games.I just doenloaded VG Storm's Adventure at C and noted that it has an option to install or uninstall the hook for JAWS. I'm curious if this hook is global in that it would benefit other games or if it only works for the Adventure at C game.

URL: http://forum.audiogames.net/viewtopic.php?pid=323897#p323897





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

As for the Jaws Api usage, if I'm understanding this correctly, the games are supposed to speak through Jaws but have no keyhook installed, so getting them to play is unnecessarily difficult as far as issuing keyboard commands are concerned? If that's what it is, that's quite ironic since they were supposed to be games playable straight through Jaws.

URL: http://forum.audiogames.net/viewtopic.php?pid=323893#p323893





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Alright, check your pm's again, Orco.

URL: http://forum.audiogames.net/viewtopic.php?pid=323891#p323891





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

I wonder if there was anything changed in that Leasey version versus the stand-alone version sound-wise. Orco, check your pm's.

URL: http://forum.audiogames.net/viewtopic.php?pid=323880#p323880





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

They are:Matchmaker - a matching game similar to BejeweledMy Country Place - A farm simulation inspired by Facebook's FarmvilleTreasure Troll - A game where you as a troll have to catch falling pieces of treasureTrouble Troll - A game where you, again as a troll, have to keep up with incoming orders for different flavors of ice cream. You have to complete the orders on time and accuratelyThe problem with these games is that they are all written in BGT which has the keyboard hook conflict with some JAWS users, and they all need a running screen reader to be accessible. Normally I'd just switch to NVDA to play these games but they are all written using the JAWS API so they won't work with any screen reader but JAWS, and if you have the keyboard hook conflict they don't work even with JAWS. Hartgen doesn't care because, as they say, they don't have the keyboard hook pro
 blem.I misspoke earlier, the Leasey games module does not have any of Jim Kitchen's games in it.And finally, I was successful in finding Q9's registration data, so I can now play it without having to install Leasey or it's games module.

URL: http://forum.audiogames.net/viewtopic.php?pid=323855#p323855





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

There are 4 games. Treasure Troll and Truffle Troll are a pair of 2 related side scroller adventure games, made by Philip for Hartgen. The third game, from what I've heard, is a full-blown farm simulation similar to games on ios like hayday that were otherwise unplayable. The 4th one is a Tetris/Bejeweled kind of game called Matchmaker, written by Damien. People have been complaining why there is no Leasey for Nvda, but that just isn't possible. They are commercializing a product, yet it must remain open source as for gpl, which they as a commercial company aren't cool with. Which is fine for them, obviously they only cater to a specific group of customers. What would be more practical would be to make the games center stand-alone, maybe update the games to support more than just the Jaws api as it seems. I honestly don't know the first thing about how these games are operated besides how to run them as described in the manual, because they don't come with
  the trial version of Leasey. But they do hook directly into Jaws, that much I know, for why would they make games for a system that directly hooks into Jaws that makes you have to unload Jaws to play them? I proposed a proper offer to Bryan of what I would pay if the games central were stand-alone, about $60 give or take for those 4 games. I've yet to hear from him, but I'm sure it's a relief for him to get a message like that as opposed to all the hatemail he's gotten about why there isn't Leasey for Nvda and why the games central isn't free. Um, if you're gonna win him over on this, asking to make the games central free is never the way to go. You make a proper business proposition on the matter and then you can talk if he gets back to you, but only then. Indeed, I'm sure if I made a deal with each dev, i e, could I pay this much for a copy of this game stand-alone, they would consider it, realizing the exclusive situation the games are in.
  Unfortunately, I doubt they'd be legally allowed to carry through with such a deal, or would they ? Aren't those games technically also the property of Hartgen as well, so resale by another party wouldn't be allowed? Or would these devs still have just as much rights to the game as Hartgen does? Can't be sure.

URL: http://forum.audiogames.net/viewtopic.php?pid=323850#p323850





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : aaron via Audiogames-reflector


  


Re: looking four q9 action game

Hi,What are the exclusive games for leasey, just out of curiosity?

URL: http://forum.audiogames.net/viewtopic.php?pid=323839#p323839





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

@BrianNo, if you have a valid registration code for Q9 you don't need JAWS or Leasey. You can just run your installer, enter your registration code, and you're good to go!@JackWell said. I don't mind discussing the strenggths and weaknesses of one screen reader over another, but draw the line when people get militant about it, making disparaging remarks about other screen readers and their users simply because it isn't their choice.While I am a happy and satisfied JAWS user who believes that JAWS is worth every penny paid for it, I also have NVDA installed for those few times when JAWS just doesn't work, such as when playing games written in BGT that aren't self voiced.I also agree that what happened to Q9 is a shame. locking it to a product that only works with a specific screen reader hurts everybody. But it isn't alone, There are four other games in the Leasey games module that aren't available anywhere 
 else, the difference between them and Q9 is that they were specifically written for Hartgen and were never available as a stand alone product as Q9 was.What I want to do now is find the Q9 registration code that the Leasey games module writes to where Q9 needs it so that I can remove having to install Leasey just to play the game. I did buy Leasey so I believe I'm entitled to that much.

URL: http://forum.audiogames.net/viewtopic.php?pid=323836#p323836





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-11 Thread AudioGames . net Forum — General Game Discussion : BryanP via Audiogames-reflector


  


Re: looking four q9 action game

Wait wait, so even if, as I now suspect, I have a Q9 installer lying around on my old computer, I'd still have to run Leasy even though I have a registration code?

URL: http://forum.audiogames.net/viewtopic.php?pid=323814#p323814





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

Yeah. I was gonna say this before it does start turn into a flame war, and this is just factual. All the major screenreaders are good. Jaws has its strength in supporting the obscure proprietary business interfaces that people go out of their way to make in-house Jaws scripts for, either because they haven't heard of nvda, refuse to work with anything open-sourced, or just are going along with it as Jaws is, by a large margin, still the international standard for access software. Jaws also is good in that it has several training materials, and even the reader itself holds your hand quite a bit if you allow it to. Nvda, on the other hand, is strongly suited for the advanced user as window-eyes was when it was around. It *can* be used by a beginning computer user willing to jump into the deep-end of learning various tasks, but for someone intimidated *a beginning computer user in general,* Jaws and Leasey would suit them and work very well for their purposes. Look, the thing wi
 th these screenreaders is that *some accessories* for them, such as Leasey, are marketed at a specific audience. Leasey for example, caters to computer beginners and somewhat advanced users. Nvda is for those who either are technologically advanced, programmers on the open source front, and people who are willing to go all in when learning how to use a computer. Does Jaws cost a lot? Yes. Taking into account they are a corporation who has a full-scale amount of employees to hire. But let's just say it's, more than the average customer can afford, but the definition of average may vary. The long and short of it is, while there will be a time, naturally, when proprietary screenreaders will have to go as open source accessibility becomes more prominent, all 3 screenreaders have an active target audience receiving them in the meantime. And if that audience consists of state agencies? Well, whatever satisfies Fs's wallet will suffice, I suppose. Lol! But Orco's absolu
 tely right, being heavily opinionated about screenreaders and deficiencies really doesn't do much to help the situation. Indeed, FS doesn't really play by that standard as they have been seen trolling the hell out of Nv Access in short random comments here and there, but on the same side there are elitists in the Nvda community, not the main developers but active members, who will do the exact same thing. I think the time for playing sides and staying on them has to come to an end somehow, and anyone in the argument need s to see both sides of the coin. Indeed, there was an ad on the trade-list, talking to playing both sides, that I think would deserve ad of the year, because it proves my point. Someone would transfer and sell their Jaws18 license, with a twist. There wasn't a set price, but the Jaws 18 license would go to the bidder who made the largest contribution to NV Access, it had to be above $200. But the largest amount would get the Jaws 18 license. And that,
  is a great way to play both sides without getting too up-close and personal in the argument. A person that swears up and down by Fs and has a fair amount of cash could buy a license for Jaws while contributing to NV Access at the same time, making it a win-win for both sides. With that, rant over. This post almost definitely belongs in a new topic, but thought I'd post it here to settle any potential heated debates.

URL: http://forum.audiogames.net/viewtopic.php?pid=323801#p323801





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : Lucas1853 via Audiogames-reflector


  


Re: looking four q9 action game

Use whatever screen reader you want, I just don't see the point in having games that are only available for the Leasey platform. I feel like this could also start a flame war though, so this will also be my last post here and indeed might be the last time I look at this topic.

URL: http://forum.audiogames.net/viewtopic.php?pid=323799#p323799





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

@shotgun shellI'm not going to get into it with you over the merits of one screen reader over another, so this is my last word on it.As Joe Steincamp of the Blind Bargains podcast said, "It does nobody any good to write disparaging remarks about other people's choices for a screen reader. Such remarks add nothing to the conversation and are more likely to start a useless flame war than anything else. If you can't not say disparaging remarks about other screen readers, perhaps it would be best for all concerned if you kept those remarks to yourself."

URL: http://forum.audiogames.net/viewtopic.php?pid=323795#p323795





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : shotgunshell via Audiogames-reflector


  


Re: looking four q9 action game

Let me rephrase what I said. I don't think Q9 itself is a waste of time, but if you were to buy leacy just for that, plus a few extra games and a few extra features for Jaws, yes, I think it's a waste of time. As for buying Jaws, I have to point out that NVDA is free and has a lot more features to it if you install addons, which by the way are also free. If you're paying for Jaws, you're paying about $900 for a screen reader with fewer features, and 200 extra to get a few more features, plus a few games. Of course, this is just my opinion, and if people like Jaws, that's perfectly fine with me. I'd ask for other opinions, but I think that's better suited for another topic.

URL: http://forum.audiogames.net/viewtopic.php?pid=323774#p323774





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : CAE_Jones via Audiogames-reflector


  


Re: looking four q9 action game

Jaws can be obtained much, much more cheaply if you can get certification. I'm not sure what the cost of applying is, but after that it's just a multiple-choice test, and you get a few tries to score 80% or higher. Certification cuts the cost down to 10% the normal price.

URL: http://forum.audiogames.net/viewtopic.php?pid=323771#p323771





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Oh yeah, I almost forgot. I also disagree that Q9 is a waste of time. Side scrollers aren't my favorite type of game mainly because I'm not very good at them, but that doesn't mean I haven't enjoyed all the hours I've spent playing Q9, even if I can't beat it on easy!What I'd like to do now is figure out where the games registration data is stored so I can save it to a .reg file for future use. As it is now, to set it up I have to first install Leasey, then the games module, then run Q9. Then terminate the game with the task manager, then manually remove Leasey and the games module from my system, then finally run the Blast Bay Studio installer.If I could capture the registration data, then I could skip all the non sense  with Leasey and the games module.But, if I ever find it, don't ask me for a copy. I may not agree with what Phillip ultimately did with the game, but I will honor his decision by not distributing t
 he registration codes.

URL: http://forum.audiogames.net/viewtopic.php?pid=323769#p323769





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Oh yeah, I almost forgot. I also disagree that Q9 is a waste of time. Side scrollers aren't my favorite type of game mainly because I'm not very good at them, but that doesn't mean I haven't enjoyed all the hours I've spent playing Q9, even if I can't beat it on easy!What I'd like to do now is figure out where the games registration data is stored so I can save it to a .reg file for future use. As it is now, to set it up I have to first install Leasey, then the games module, then run Q9. Then terminate the game with the task manager, then manually remove Leasey and the games module from my system, then finally run the Blast Bay Studio installer.If I could capture the registration data, then I could skip all the non sense  with Leasey and the games module.

URL: http://forum.audiogames.net/viewtopic.php?pid=323769#p323769





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : BryanP via Audiogames-reflector


  


Re: looking four q9 action game

I agree. Probably not one of Philip's smarter decisions. As for the game I definitely enjoyed it a great deal. Heck, I did a let's play of it on YouTube a while back LOL. I still have my registration (although remembering on which specific storage device I backed it up may take a while), so I'm spared the necessity of buying the overpriced scripts. I won't go so far as to say that JFW isn't worth the price, although after ten years of using Window-Eyes the switch back has been a little hard, more emotionally than anything else. But getting back on topic I love the atmosphere of the game not to mention the music.

URL: http://forum.audiogames.net/viewtopic.php?pid=323756#p323756





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

And I beg to differ with shotgunshell with his comment that JAWS isn't worth the price. I have  and do not regret buying it. For me it has and still is worth every penny I paid for it.Just because it's more than you can afford, doesn't make it not worth the asking price.

URL: http://forum.audiogames.net/viewtopic.php?pid=323713#p323713





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

@Blindncool, it's not as easy as that. Philip was probably made an offer. Let's take into account that q9 is the first commercial game that was acquired by Hartgen. Philip probably had no idea was he would've gotten into, but probably thought just as much as it is a legitimate offer why turn it down? I suppose it would only make financial sense for him. Turns out it ended probably as he never intended it to, i e, q9 was tied into an expensive package. @Garret and all others detracting q9 as it were, you gotta remember, this was 2009, and the game was written in c++. It's not something that could've been cranked out like a bgt game could be. Coding in c++ is a pretty overwhelming task, which is the main reason he made bgt, to simplify things and make something that is designed with audiogames in mind, that takes care of all the low-level functions required for the average game (sound handling, keyboard input, text to speech, you name it.) So coding a game l
 ike q9 took a lot more time. As for whether it holds up to today's standards? Say what you will, but I say definitely yes. Sure, it's not Adventure at C:, but it certainly holds up to today's standards a lot more than some other titles do. Even so, I would never call it *wasting time* as AlirezaNosrati puts it.

URL: http://forum.audiogames.net/viewtopic.php?pid=323703#p323703





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-10 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

@Blindncool, it's not as easy as that. Philip was probably made an offer. Let's take into account that q9 is the first commercial game that was acquired by Hartgen. Philip probably had no idea was he would've gotten into, but probably thought just as much as it is a legitimate offer why turn it down? I suppose it would only make financial sense for him. Turns out it ended probably as he never intended it to, i e, q9 was tied into an expensive package. @Garret and all others detracting q9 as it were, you gotta remember, this was 2009, and the game was written in c++. It's not something that could've been cranked out like a bgt game could be. Coding in c++ is a pretty overwhelming task, which is the main reason he made bgt, to simplify things and make something that is designed with audiogames in mind, that takes care of all the low-level functions required for the average game (sound handling, keyboard input, text to speech, you name it.) So coding a game l
 ike q9 took a lot more time. As for whether it holds up to today's standards? Say what you will, but I say definitely yes. Sure, it's not Adventure at C:, but it certainly holds up to today's standards a lot more than some other titles do.

URL: http://forum.audiogames.net/viewtopic.php?pid=323703#p323703





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : shotgunshell via Audiogames-reflector


  


Re: looking four q9 action game

I agree, I may have considered buying it, but now that it's over a thousand dollars, there's no way in hell that I'd buy it. I don't think Leacy nor Jaws are worth anywhere near the price that they're sold at, so I would probably just get the Division of Blind Services to buy me a copy. Unless you have a lot of money, I would strongly recommend you not waste your time with the product, and especially not for a game like q9.

URL: http://forum.audiogames.net/viewtopic.php?pid=323641#p323641





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Oh it adds things like multiple clipboards, a global contacts directory, internet radio, and bookmarks that not only remember the page but a specific location on the page, and other stuff.They're nice to have if you want them, I just think it's a bit over priced.And except for Q9, the games module is almost pointless.

URL: http://forum.audiogames.net/viewtopic.php?pid=323610#p323610





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Sebby via Audiogames-reflector


  


Re: looking four q9 action game

What added features of Leasey are those, then? I was just wondering if it was worth it myself--guess you've answered that question for me. I'll check out the product pages nonetheless.

URL: http://forum.audiogames.net/viewtopic.php?pid=323604#p323604





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : AlirezaNosrati via Audiogames-reflector


  


Re: looking four q9 action game

dont buy this game. i've completed it and it's waisting time

URL: http://forum.audiogames.net/viewtopic.php?pid=323598#p323598





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : AlirezaNosrati via Audiogames-reflector


  


Re: looking four q9 action game

dont buy this game. i've completed it and it's waisting time

URL: http://forum.audiogames.net/viewtopic.php?pid=323597#p323597





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Leasey is a set of scripts for JAWS that add a bunch of features and tools to JAWS as well as providing a controlled environment for computer beginners to help them learn to use their computers. As the beginner advances, the controlled environment can be switched off when it is no longer needed, yet all the added features and tools remain.I made the mistake of buying it, because for what it is, it's way over priced.I uninstalled it long ago and just use JAWS without it.AS far as the rumor of making the games module a stand alone product, I haven't heard that and seriously doubt that will ever happen.Even if it was made a stand alone product, I doubt there would be many buyers. One reason would be that most of what's in it is freely available elsewhere, for example it has all of the Spoonbill Blind Gamers games, the RS games client, most of Jim Kitchen's games, and Park Boss.The games that are exclusive, not available anywhere 
 else, most are written in BGT so there's the BGT & JAWS keyboard hooking conflict, and you can't get around that problem by using another screen reader like NVDA because the games are written using the JAWS API instead of the standard accessibility API that works with any screen reader, so if you are unlucky enough to be bitten by the keyboard hooking conflict most of the exclusive games are unusable. The only exclusive game that would be at all usable would be Q9 and that's because it was an outside acquisition rather than something written specifically for Hartgen.

URL: http://forum.audiogames.net/viewtopic.php?pid=323589#p323589





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Leasey is a set of scripts for JAWS that add a bunch of features and tools to JAWS as well as providing a controlled environment for computer beginners to help them learn to use their computers. As the beginner advances, the controlled environment can be switched off when it is no longer needed, yet all the added features and tools remain.I made the mistake of buying it, because for what it is, it's way over priced.I uninstalled it long ago and just use JAWS without it.

URL: http://forum.audiogames.net/viewtopic.php?pid=323589#p323589





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : blindncool via Audiogames-reflector


  


Re: looking four q9 action game

That's my only problem with Phillip and Blastbay. He makes some great games. That's for sure. However, Instead of making Q9 freeware (so that everyone can enjoy it), he says "Oh, I know what I'll do. I'll just give Hartjen Consultancy the right to make my game even more expensive!"

URL: http://forum.audiogames.net/viewtopic.php?pid=323586#p323586





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Angel via Audiogames-reflector


  


Re: looking four q9 action game

What Is leasy?I do not know much about it!

URL: http://forum.audiogames.net/viewtopic.php?pid=323583#p323583





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: looking four q9 action game

i think I might've heard tentative plans to make the games center stand-alone after the major update to Leasey, but not much else since then, unfortunately.

URL: http://forum.audiogames.net/viewtopic.php?pid=323580#p323580





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

staindaddict is right, if you don't have a registration code purchased from Blast Bay Studios when they were selling it all you'll get from the installer is a demo and there's no harm giving you that, so here it is.https://www.sendspace.com/pro/dl/sqfue9Enjoy!

URL: http://forum.audiogames.net/viewtopic.php?pid=323579#p323579





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : staindaddict via Audiogames-reflector


  


Re: looking four q9 action game

@oussamabengatrane do you have a registration code? If you do, I will send you the game installer, it's still floating around the internet, so I don't see why I can't send it. lol

URL: http://forum.audiogames.net/viewtopic.php?pid=323573#p323573





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Lirin via Audiogames-reflector


  


Re: looking four q9 action game

Yeah, leasey, an inclusive platform of audio games. It's so sad these games like q9 are available ontly there.

URL: http://forum.audiogames.net/viewtopic.php?pid=323572#p323572





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Somebody could provide the games files, however, unless you purchased the game from Blast Bay Studios, it would only be a demo.Phillip Benfall (I hope I spelled that right) sold the rights to the game to Hartgen Consultancy who made it a part of their Leasey product's games module. So now, to get the full Q9 games you have to have a legally licensed copy of JAWS plus a legally licensed copy of Leasey.Sorry.

URL: http://forum.audiogames.net/viewtopic.php?pid=323570#p323570





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Orko via Audiogames-reflector


  


Re: looking four q9 action game

Somebody could provide the games files, however, unless you purchased the game from Blast Bay Studios, it would only be a demo.Phillip Benfall (I hope I spelled that right) sold the rights to the game to Hartgen Consultancy who made it a part of their Leasey product's games module. So now, to get the full Q9 games you have to have a legally licensed copy of JAWS plus a legally licensed copy of Leasey.Sorry.

URL: http://forum.audiogames.net/viewtopic.php?pid=323569#p323569





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : Angel via Audiogames-reflector


  


Re: looking four q9 action game

Can someone delete one of these similar topiks please?Same title and much more!

URL: http://forum.audiogames.net/viewtopic.php?pid=323566#p323566





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : oussamabengatrane via Audiogames-reflector


  


looking four q9 action game

hi guyscan sum 1 give me link of q9 action game, because i cant fine any link to download itan thanks

URL: http://forum.audiogames.net/viewtopic.php?pid=323562#p323562





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

looking four q9 action game

2017-08-09 Thread AudioGames . net Forum — General Game Discussion : oussamabengatrane via Audiogames-reflector


  


looking four q9 action game

hi guyscan sum 1 give me link of q9 action game, because i cant fine any link to download itan thanks

URL: http://forum.audiogames.net/viewtopic.php?pid=323563#p323563





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Q9 action game

2017-01-03 Thread AudioGames . net Forum — General Game Discussion : Dark via Audiogames-reflector


  


Re: Q9 action game

Unfortunately, you can't have the q9 action game without buying the leasy package for a stupid amount of money, like about $150. This is a bugger indeed, but there's no other way to get it now unfortunately, and no, someone can't just "post a link" since the game isn't abandonware.

URL: http://forum.audiogames.net/viewtopic.php?pid=292074#p292074





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Q9 action game

2017-01-03 Thread AudioGames . net Forum — General Game Discussion : danang137 via Audiogames-reflector


  


Q9 action game

Hy all.I want the Q9 action game. If you have the copy of the game, please post the link

URL: http://forum.audiogames.net/viewtopic.php?pid=292067#p292067





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : Figment via Audiogames-reflector


  


Re: registering q9 action game?

@Andy93That's what backups are for, and that is your responsibility, not Blast Bay's. If you lose your key because you didn't have adequate backups, you really have no one to blame but yourself.I have a local copy of every email I've ever received that has a software registration key in it going all the way back to 1998 when I bought my first piece of shareware. I have an offline backup made by simple copying on an external USB hard drive, which gets updated at the beginning of each month. I also backup my system every Saturday morning using Backup & Restore to two external USB hard drive, one for odd numbered months, the other for even numbered months. That way the most I can ever lose is one month. To lose more would require that all three external drives fail at the same time, and that isn't very likely.

URL: http://forum.audiogames.net/viewtopic.php?pid=280105#p280105





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : jaybird via Audiogames-reflector


  


Re: registering q9 action game?

As long as you have your license key stored somewhere other than on your hard drive being reformatted, you can still use it to register the stand-alone version of the game. In other words, as far as I know, it doesn't use any type of Internet software activation system. If you lose all copies of your license key, then I don't know how you would get a replacement from Blastbay. So please, please, please, make backups of your Q9 license key, and for that matter, any other license keys and any other potentially irreplaceable data on your hard drive!

URL: http://forum.audiogames.net/viewtopic.php?pid=280082#p280082





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : Figment via Audiogames-reflector


  


Re: registering q9 action game?

According to Brian Hartgen, he was dismayed at the things being said about him and Phil concerning his acquisition of the game, so when he was approached about making the game separately available with the same disparaging attitude towards him, he wasn't inclined to give their request any consideration. Who can blame him?And according to Phil, Q9 wasn't selling any more, so selling it to Brian was a chance to make some more money on a game he viewed as dead.Seems to me like the only one the people who wanted Q9 to continue to be available separately have to blame is themselves. But they won't do that, so they demonize two business men making a business deal that benefited both of them.Isn't it interesting that how they treated Brian and Phil was conveniently forgotten?From Brian Hartgen regarding Q9.http://www.hartgen.org/q9Original forum thread regarding Hartgen's acquisition
  of Q9http://forum.audiogames.net/viewtopic.php?id=16592

URL: http://forum.audiogames.net/viewtopic.php?pid=280035#p280035





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : Andy93 via Audiogames-reflector


  


Re: registering q9 action game?

hmm, now here we go again figmant. Why wanting to start another hot discussion about the community saying this and that,  and passed events?Now here's a question I have. I baught Q9 in 2014, back when I was working as a computer trainer. Are still gonna be able to use  our license keys? I still have it installed, no probs, but there might be times when you need to format your hard drive or something, and of course you're gonna loose everything. I know I should have asked this before, but as a good latinno I left this question for other opportunity, for the last moment haha

URL: http://forum.audiogames.net/viewtopic.php?pid=280043#p280043





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : Figment via Audiogames-reflector


  


Re: registering q9 action game?

According to Brian Hartgen, he was dismayed at the things being said about him and Phil concerning his acquisition of the game, so when he was approached about making the game separately available with the same disparaging attitude towards him, he wasn't inclined to give their request any consideration. Who can blame him?And according to Phil, Q9 wasn't selling any more, so selling it to Brian was a chance to make some more money on a game he viewed as dead.Seems to me like the only one the people who wanted Q9 to continue to be available separately have to blame is themselves. But they won't do that, so they demonize two business men making a business deal that benefited both of them.Isn't it interesting that how they treated Brian and Phil was conveniently forgotten?From Brian Hartgen regarding Q9.http://www.hartgen.org/q9

URL: http://forum.audiogames.net/viewtopic.php?pid=280035#p280035





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : Dark via Audiogames-reflector


  


Re: registering q9 action game?

I bought it back in 2006 when I first discovered audiogamesand have run through it three or four times since then. Certainly not one I regret buying and one I'd recommend to anyone just as a fun side scrolling outing and even now a fairly well designed if simple game. no overwhelming the player with random stuff chucked everywhere which is hard to place and identify, everything is smooth and meant as a challenge, and yes, lethal lab 2 is! a challenge, try doing it without spamming the extra lives from silver spaceship and you'll see what I mean.I'm glad it's now freeware and hasn't vanished into the dustbin of history or worse been made practically unobtainable like Q9.

URL: http://forum.audiogames.net/viewtopic.php?pid=280024#p280024





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-23 Thread AudioGames . net Forum — General Game Discussion : simba via Audiogames-reflector


  


Re: registering q9 action game?

Hi.Oh yes, super liam is quite the funny little game, it's also freeware since some months which is also a nice thing even though I would have gladly paied for that one cause it was something new at that time.

URL: http://forum.audiogames.net/viewtopic.php?pid=280019#p280019





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-22 Thread AudioGames . net Forum — General Game Discussion : Dark via Audiogames-reflector


  


Re: registering q9 action game?

@Kimberly hello and welcome to the forum. I'm afraid this is a very old topic and what's going on with Q9 has changed quite a bit since this was originally posted.Last year, Blastbay games sold the rights to distribute q9 to the developers of Leasy, which is a set of jfw scripts. Thus, the only way now to register Q9 is to buy leasy, which costs $150, and also requires a fully licensed copy of Jaws. The Leasy developer has been asked on many occasions if he will please sell Q9 as a stand alone game, and has flatly refused, indeed he has even made disparaging remarks about Gamers too and is over all nott a nice person. Many people are very sorry philip sold rights to someone who apparently cares so little for the game.So, I'm afraid that no, there isn't a way to register Q9 at all which is sad. On the plus side however there are many good audio side scrollers around, To begin, try Crazy party, db page here an exceptional game with literally hundreds of minigames to play, including many side scrolling ones, plus it's free. Also, if you use the "search games" link on the front page of the site you can list the games by genre. One genre we have is side scrollers which will list all available currently in the database. I'd personally especially recommend adventure at C:, Angel gift and good old superliam, also Vgstorm who make adventure at C: have a newer side scroller the Gate which I've not tried yet but which has very good reports. so while bad news about Q9, there is plenty more out there. hth. As to blind gladiator, try over on The audiogame It site for more info, I believe blind gladiator is still in the early funding stage where it's necessary to buy different funding types for the game, but don't quote me. Myself i&
 #039;m waiting for the Ios version of the game..@simba, as I said, Q9 isn't available anymore, this is also btw an old thread, look at the original post date. I don't know why kimberly is asking here, maybe she googled registration of Q9 and found it.

URL: http://forum.audiogames.net/viewtopic.php?pid=279964#p279964





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-22 Thread AudioGames . net Forum — General Game Discussion : jack via Audiogames-reflector


  


Re: registering q9 action game?

Not to mention, for now you have to buy q9 through Leasy, not stand--alone.

URL: http://forum.audiogames.net/viewtopic.php?pid=279958#p279958





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-22 Thread AudioGames . net Forum — General Game Discussion : simba via Audiogames-reflector


  


Re: registering q9 action game?

Hi.Well, you go to the blastbay studios site and pay for the game, I don't know how expensive this one is though.At Burak, maybe the E-Mail is in your spam folder, did you already check there?At kimberly, blind gladioator is not in any way related to Q9, so please open up a new topic for that.

URL: http://forum.audiogames.net/viewtopic.php?pid=279940#p279940





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: registering q9 action game?

2016-09-22 Thread AudioGames . net Forum — General Game Discussion : kimberly1980 via Audiogames-reflector


  


Re: registering q9 action game?

Hey I have two problems, I had purchased blind gladiator I was wondering if I will receive a cd or am'i suppose to download the game? I don't know i'm really comfused lol and two I want to register Q9 action how would I go about doing that or should I say purchasing the game cause I have the demo but you can only play that so for so long lol please email me at k.mille...@aol.com

URL: http://forum.audiogames.net/viewtopic.php?pid=279932#p279932





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Q9 action game

2016-01-21 Thread AudioGames . net Forum — General Game Discussion : BryanP via Audiogames-reflector


  


Re: Q9 action game

Thanks a lot Brian Fartgen.

URL: http://forum.audiogames.net/viewtopic.php?pid=247421#p247421





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Q9 action game

2016-01-21 Thread AudioGames . net Forum — General Game Discussion : jaybird via Audiogames-reflector


  


Re: Q9 action game

Unfortunately he sold the rights to Q9 to another company. You can now only buy it in conjunction with a JAWS-only program. As far as I know there's no longer any way to legally obtain a registration key for the game as a stand-alone product.

URL: http://forum.audiogames.net/viewtopic.php?pid=247415#p247415





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Q9 action game

2016-01-21 Thread AudioGames . net Forum — General Game Discussion : Riad via Audiogames-reflector


  


Re: Q9 action game

As far as I remember, you can find it on blastbay.com, on a page called order, or, wait a second, did Philip make it available for purchase from another company as well, or is my memory weak these days due to the whole bunch of work I'm in at the moment? 

URL: http://forum.audiogames.net/viewtopic.php?pid=247412#p247412





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Q9 action game

2016-01-21 Thread AudioGames . net Forum — General Game Discussion : mihas96 via Audiogames-reflector


  


Q9 action game

Hi, I have a question for q9 action game ( http://audiogames.net/db.php?id=Q9+action+game )Where can I get a product key/buy this game to unlock all rooms? Because I don't find register key or option to buy this game.Help please, it's very good game! Best regards

URL: http://forum.audiogames.net/viewtopic.php?pid=247405#p247405





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-03 Thread AudioGames . net Forum — General Game Discussion : kianoosh shakeri via Audiogames-reflector


  


Re: cheat codes game q9 action game

Thank you all.

URL: http://forum.audiogames.net/viewtopic.php?pid=199576#p199576




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-02 Thread AudioGames . net Forum — General Game Discussion : Socheat via Audiogames-reflector


  


Re: cheat codes game q9 action game

why not report it this guy?

URL: http://forum.audiogames.net/viewtopic.php?pid=199415#p199415




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-02 Thread AudioGames . net Forum — General Game Discussion : Muhammad Hajjar via Audiogames-reflector


  


Re: cheat codes game q9 action game

jonkamal0 wrote:We all know that health is important for happy living.  women health is a main issue which everybody worried about these days. If we take proper precautions it is easy to maintain good health even at old age. Below are few tips to maintain good healthy conditions.Daily exercise is a must to keep the body healthy. Other than doing hard exercises you can do simple exercises like walking which will help to burn calories. Stress reduction is the other thing needed to maintain men and women health. A life which is too busy, active and responsible with some thrills is recommended. However, getting adequate rest and sleep is a must to maintain good health. Take a walk and get some space. These common sense measures can do much to prevent high cholesterol and weight gain, blood pressure, insomnia, headaches, acne and even hair loss.Ok what should we do? Are you a spamer or what?

URL: http://forum.audiogames.net/viewtopic.php?pid=199412#p199412




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-02 Thread AudioGames . net Forum — General Game Discussion : cruiser destroyer via Audiogames-reflector


  


Re: cheat codes game q9 action game

jonkamal0 wrote:We all know that health is important for happy living.  women health is a main issue which everybody worried about these days. If we take proper precautions it is easy to maintain good health even at old age. Below are few tips to maintain good healthy conditions.Daily exercise is a must to keep the body healthy. Other than doing hard exercises you can do simple exercises like walking which will help to burn calories. Stress reduction is the other thing needed to maintain men and women health. A life which is too busy, active and responsible with some thrills is recommended. However, getting adequate rest and sleep is a must to maintain good health. Take a walk and get some space. These common sense measures can do much to prevent high cholesterol and weight gain, blood pressure, insomnia, headaches, acne and even hair loss.hey! you are bot or not? so if the bot then so...

URL: http://forum.audiogames.net/viewtopic.php?pid=199410#p199410




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-01 Thread AudioGames . net Forum — General Game Discussion : jonkamal0 via Audiogames-reflector


  


Re: cheat codes game q9 action game

We all know that health is important for happy living.  women health is a main issue which everybody worried about these days. If we take proper precautions it is easy to maintain good health even at old age. Below are few tips to maintain good healthy conditions.Daily exercise is a must to keep the body healthy. Other than doing hard exercises you can do simple exercises like walking which will help to burn calories. Stress reduction is the other thing needed to maintain men and women health. A life which is too busy, active and responsible with some thrills is recommended. However, getting adequate rest and sleep is a must to maintain good health. Take a walk and get some space. These common sense measures can do much to prevent high cholesterol and weight gain, blood pressure, insomnia, headaches, acne and even hair loss.

URL: http://forum.audiogames.net/viewtopic.php?pid=199386#p199386




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: cheat codes game q9 action game

2015-01-01 Thread AudioGames . net Forum — General Game Discussion : cruiser destroyer via Audiogames-reflector


  


Re: cheat codes game q9 action game

hi, look that. q9go wxlx - Takes you to a particular world and level. go w1l2 takes you to the jungle world level 2, go w3l3 takes you to the mountain world level 3, and go w4l4 takes you to the boss.hitchin' a ride - Allows you to walk in the air over pits.give me novacaine - Gives you 1000 health.good riddance - Gives you 1000 lives.welcome to paradise - Gives you 1000 deus shields.ha ha you're dead - Gives you 1000 rocks for the slingshot.21 guns - Gives Q9 a laser gun.To enter a cheat code, press the delete key at any time when you are in a game level.Enjoy!

URL: http://forum.audiogames.net/viewtopic.php?pid=199295#p199295




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

cheat codes game q9 action game

2015-01-01 Thread AudioGames . net Forum — General Game Discussion : kianoosh shakeri via Audiogames-reflector


  


cheat codes game q9 action game

Hi all.If anyone has cheat codes game q9action game, thanks

URL: http://forum.audiogames.net/viewtopic.php?pid=199294#p199294




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector