Re: Bitmessage

2017-09-11 Thread AudioGames . net Forum — Off-topic room : SLJ via Audiogames-reflector


  


Re: Bitmessage

Hmm. I don't get the point of this?

URL: http://forum.audiogames.net/viewtopic.php?pid=329269#p329269





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

Re: Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Hijacker via Audiogames-reflector


  


Re: Accessible calculator for windows

Hi,well, if you probably got Cygwin flying around on your PC (which is mainly some developer's tool) you also got bc, a command-line based calculator, which is pretty powerful and totally accessible.But the person before me is right, if you really just need to add, subtract or calculate percentages (which means that you'll simply multiply/devide) you can stay with google. Another thing that works pretty well is some interactive programming language interpreter, like e.g. Python itself. Open the interactive prompt, enter "2+2" and get 4 out of it. Not speaking of that you can work with variables in there too, lol.There is a pretty damn powerful calculator for the blind available, which also know loads of those high-level mathematic stuff, including vector calculation, matrices and more, but its from a german developer and I don't think that he translated it into English, so that won't be a way to do things right.Best Regards.
 Hijacker

URL: http://forum.audiogames.net/viewtopic.php?pid=329267#p329267





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

Re: Alter Aeon September 2017 Update

2017-09-11 Thread AudioGames . net Forum — New releases room : enes via Audiogames-reflector


  


Re: Alter Aeon September 2017 Update

hi,Been catching up on quest lines myself. On the shadowclaw swamp, where can the lilac  pettles be gathered?

URL: http://forum.audiogames.net/viewtopic.php?pid=329268#p329268





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

Re: New Audiogame: Audio Moto Championship available for PC and Mac!

2017-09-11 Thread AudioGames . net Forum — New releases room : SLJ via Audiogames-reflector


  


Re: New Audiogame: Audio Moto Championship available for PC and Mac!

shrike wrote:Firstly please provide a demo.2nd I would not pay 250 for a game even if it came with Taylor Swift for a week and me having full access to her.250 for an audio game? jesus Christ what are they putting in there pasta over there these days because I want to order some.Please take a look at the prices again. I find the cheepest price fair for an audiogame.

URL: http://forum.audiogames.net/viewtopic.php?pid=329266#p329266





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

Re: Explanation from Somethinelse

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


  


Re: Explanation from Somethinelse

So Apple sets an expiration date in the software to make it slow down on November 22 or whatever date they choose, or does it have to do with the actual device?

URL: http://forum.audiogames.net/viewtopic.php?pid=329265#p329265





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

Re: Sonus GDE (Game Development Enviroment)

2017-09-11 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Sonus GDE (Game Development Enviroment)

Hmm, python scripts you say? I assume that could support importing and packing of external libraries like Numpy?A couple more questions: Will the console have any visual processing/displaying capabilities? Is there any wifi/bluetooth? You've also mentioned in previous threads about cartridges and external USB's for loading games/software, does the device have internal memory for storing data or would that only be stored on external media? Could it be connected to and interface with a PC with a USB cable, and if so would that enable things like recording gameplay audio, or extending its audio capabilities? Or could it be connected to other Sonus consoles through the USB port for some form of multiplayer? Could it support external braille displays through the USB? How much ram and processing power does it have? And will there be some API documentation for more experienced developers at some point?

URL: http://forum.audiogames.net/viewtopic.php?pid=329264#p329264





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

Re: redspot review

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


  


Re: redspot review

One other thing. I love how people love to use the term stolen even though the guy paid Sam for the code. I guess I shouldn't buy another IPhone and use it because I'm stealing from apple even though I'm paying for the phone I just got.

URL: http://forum.audiogames.net/viewtopic.php?pid=329262#p329262





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

Re: Python?

2017-09-11 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Python?

The default editor for python, IDLE, is not very screen reader accessible to begin with. You can create scripts with a simple text editor like notepad, just save the documents as plain text with *.py on the end. You can then run them from the command line by typing "python myscript.py", assuming your paths are setup correctly. There are also other more accessible IDE's around, such as Notepad++. Others may be along to share their preferred tools as well.

URL: http://forum.audiogames.net/viewtopic.php?pid=329261#p329261





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

Re: Python?

2017-09-11 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector


  


Re: Python?

Hi,I wouldn't call the interactive input Python offers itself as a console actually. When I hear console, I usually think of terminals like the Linux shell, but thats indeed not what Python has to offer. The two things Python can give us itself are:1. A scientilla based IDE (which isn't that great and you should probably try to get something better) and2. an interactive command input, which allows us to test commands, conditions and small programs on the fly.None of those should you be using to "create" programs.Well, you didn't really describe your problem yet. You only said "it doesn't let me do that", but why? Whats your exact problem?I'd recommend you to create a test program file (like test.py), write some hello world example into it, like follows:def main()
  print 'Hello world!'

main()Open some command prompt, navigate into the folder where the test.py file is currently located, and type "python test.py". As long as your PATH environment variable is set up correctly, python should interpret the file and print you some hello world statement.Best Regards.Hijacker

URL: http://forum.audiogames.net/viewtopic.php?pid=329263#p329263





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

Re: I'm on PAX AUS's accessibility panel - please share your thoughts

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


  


Re: I'm on PAX AUS's accessibility panel - please share your thoughts

Hi.What to say? Well, there are a lot of things to say.Sony: Please make your screenreader available world wide. There are actually a lot of blind people outside the US.  But, Sony don't listen at all, and they don't seem to care.It would be fantastic to have accessible games for blind people on the consoles. Some games are playable, but that's pure lock. There are so many games which would have been playable, if just some small audio cues was added, or if the gameplay was changed a bit. Microsoft have made Narrator, their screenreader, ready to implement in games, but no developers have done that yet.It would be fantastic if other companies would follow EA Games, who have started to implement accessibility for blind people in their games. You can read more about this in the Madden accessibility topic. Feel free to ask if you need more informatio
 n.

URL: http://forum.audiogames.net/viewtopic.php?pid=329260#p329260





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

Re: pokemon X or pokemon Y, does anyone have a download link?

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


  


Re: pokemon X or pokemon Y, does anyone have a download link?

Hi,first of all, Pokemon X/Y are Nintendo 3DS games, not Nintendo DS. Second, what are you going to do with them? The only way for now to play them reliably is by using a Nintendo 3DS Flash Card like Gateway 3DS or something, since Citra 3DS, the Nintendo 3DS emulator, isn't yet stable enough to emulate them as best as needed to enjoy playing them.Finally, I don't think that we actually support piracy here. Sharing links to illegal ROMs of games falls under piracy, so you won't get any link from me regarding this topic.Best Regards.Hijacker

URL: http://forum.audiogames.net/viewtopic.php?pid=329259#p329259





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

Bitmessage

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jacob100 via Audiogames-reflector


  


Bitmessage

Anyone having tried out Bitmessage?Bitmessage is an anonymized decentralized peer to peer network for anonymous messaging.The Bitmessage client is not very accessible, but you can set up  Bitmessage in your email client by editing a configuration file.Main site:http://www.bitmessage.orgPOP/SMTP email gateway:https://github.com/AyrA/BitMailServer

URL: http://forum.audiogames.net/viewtopic.php?pid=329258#p329258





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

Re: List of audio games and there programming languages

2017-09-11 Thread AudioGames . net Forum — Developers room : defender via Audiogames-reflector


  


Re: List of audio games and there programming languages

Tactical Battles also uses the dot net framework, I mention it because I've always seen it written as C# .net.Also Top speed 3 is coded in Ruby, I'm pretty sure it's the only audio game that is, in fact, at least so far.As far as I can tell audio quake is written in pearl, that may not be the main language used in it though.Don't forget Dark Defender and Cyclepath, they are using _javascript_, with the Electron engine to emulate chrome, and something about a Web API for the online version, sorry I'm not a programmer, those are really interesting though because you can even apparently play them on the XBox1 and touchscreen devices, at least for Cyclepath.Also all of the old PB games stuff, I think they used _javascript_, I believe it was version 6.A blind legend is coded in unity.You forgot Redspot and Bloodshed, both BGT.It would be interesting to know what the Ticon Blue games are coded in, as well as Audio G
 ame Hub for windows.I also forget what The Wastes and Warsim are made with.

URL: http://forum.audiogames.net/viewtopic.php?pid=329253#p329253





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

Re: Tips and tricks on using the command line.

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jacob100 via Audiogames-reflector


  


Re: Tips and tricks on using the command line.

@Green Gables Correct me if I am wrong, but SecureCRT isn't free but trial software.Putty on the other hand is free.

URL: http://forum.audiogames.net/viewtopic.php?pid=329257#p329257





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

Accessible GnuPG GUI for Windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jacob100 via Audiogames-reflector


  


Accessible GnuPG GUI for Windows

Anyone who knows an accessible  GnuPG GUI  for Windows?I found GPGShell, but it's not very accessible.cryptophane 0.7.0 is accessible but only supports  GnuPG 1.49 and the newest version 2.x.https://code.google.com/archive/p/cryptophane/I am well versed in using the commandline, but I  want an easy accessible solution I can recommend to a visually impaired friend.

URL: http://forum.audiogames.net/viewtopic.php?pid=329256#p329256





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

Re: List of audio games and there programming languages

2017-09-11 Thread AudioGames . net Forum — Developers room : defender via Audiogames-reflector


  


Re: List of audio games and there programming languages

Tactical Battles also uses the dot net framework, I mention it because I've always seen it written as C# .net.Also Top speed 3 is coded in Ruby, I'm pretty sure it's the only audio game that is, in fact, at least so far.As far as I can tell audio quake is written in pearl, that may not be the main language used in it though.Don't forget Dark Defender and Cyclepath, they are using _javascript_, with the Electron engine to emulate chrome, and something about a Web API for the online version, sorry I'm not a programmer, those are really interesting though because you can even apparently play them on the XBox1 and touchscreen devices, at least for Cyclepath.Also all of the old PB games stuff, I think they used _javascript_, I believe it was version 6.

URL: http://forum.audiogames.net/viewtopic.php?pid=329253#p329253





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

Python?

2017-09-11 Thread AudioGames . net Forum — Developers room : Diego via Audiogames-reflector


  


Python?

Hello guysI'm starting to learn python, and I installed python 2.7 on my pc that runs Windows.The problem I can not open is the python console to create programs.Can someone help me?.!

URL: http://forum.audiogames.net/viewtopic.php?pid=329255#p329255





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

Re: List of audio games and there programming languages

2017-09-11 Thread AudioGames . net Forum — Developers room : defender via Audiogames-reflector


  


Re: List of audio games and there programming languages

Tactical Battles also uses the dot net framework, I mention it because I've always seen it written as C# .net.Also Top speed 3 is coded in Ruby, I'm pretty sure it's the only audio game that is, in fact, at least so far.As far as I can tell audio quake is written in pearl, that may not be the main language used in it though.

URL: http://forum.audiogames.net/viewtopic.php?pid=329253#p329253





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

Re: List of audio games and there programming languages

2017-09-11 Thread AudioGames . net Forum — Developers room : defender via Audiogames-reflector


  


Re: List of audio games and there programming languages

Tactical Battles also uses the dot net framework, I mention it because I've always seen it written as C# .net.Also Top speed 3 is coded in Ruby, I'm pretty sure it's the only audio game that is, at least so far.

URL: http://forum.audiogames.net/viewtopic.php?pid=329253#p329253





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

Re: good audio editors?

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jacob100 via Audiogames-reflector


  


Re: good audio editors?

@EthinBy unrecognizable do you mean that Sound FOrge is no longer screen reader accessible?Last version I tried was partially accessible with Jaws, but that may have been a long time ago.

URL: http://forum.audiogames.net/viewtopic.php?pid=329254#p329254





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

Re: Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jacob100 via Audiogames-reflector


  


Re: Accessible calculator for windows

For basic calculations, Google is an accessible calculator.Just enter a calculation into Google's search and  get the result.I  dislike Windows 10 calculator. It has lots of great features, but Jaws becomes unresponsive in the main Window.Google's calculator  even supports copy and pasting.

URL: http://forum.audiogames.net/viewtopic.php?pid=329252#p329252





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

Re: Madden Accessibility Update

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


  


Re: Madden Accessibility Update

Buffalo just somehow got worse after my trade antics:Traded the D-line for Gronk. Then traded for Fitzgerald, then traded for Brees.Yes, I am trying to recreate the run and shoot offense of the Jim Kely eraI have my second string defensive line in there and SOMEHOW got a 45-38 win in wekek 1.Last second incompletion ftw.I Here's my starting offense depth charg:QB:BreesRB:IngramFB:Whoever it is for the Bills, can't rememberTE:GronkWR:Witten/Bryant/Fitzgerald (yes I raided the Cowboys roster, gave them picks and backups for that)If I'm taking the Bills somewhere everyone else is gonnna suffer at my trades. Panthers need a new QB as Newton apparently simmed and got an injury, Packers lost (what?), Vikings got obliterated, Giants won on a blowout andmost improbably of all, the Browns put up 60 points? Okay, this franchise is unrealistic.Oh and the Niners go
 t shut out too. Some things never change either.

URL: http://forum.audiogames.net/viewtopic.php?pid=329251#p329251





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

Re: Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Ethin via Audiogames-reflector


  


Re: Accessible calculator for windows

I also wrote my own calculator -- although I haven't updated it in nearly two years. You can find it at https://www.dropbox.com/s/cijibharz2u5z … .exe?dl=1.

URL: http://forum.audiogames.net/viewtopic.php?pid=329250#p329250





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

Re: setup of teamtalk server

2017-09-11 Thread AudioGames . net Forum — Off-topic room : crashmaster via Audiogames-reflector


  


Re: setup of teamtalk server

Hi jack thanks a lot.Its indeed good to have a guide and so simple yet detailed.I have put this to the admin and I am sure he will be happy with my efforts

URL: http://forum.audiogames.net/viewtopic.php?pid=329249#p329249





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

Re: setup of teamtalk server

2017-09-11 Thread AudioGames . net Forum — Off-topic room : jack via Audiogames-reflector


  


Re: setup of teamtalk server

this guide pretty much says it all. It's for the Vultr vps, but you can apply this to whatever vps or physical machine is being used. The setup of the Teamtalk server is really quite straight forward, but it's nice to link to an official guide.

URL: http://forum.audiogames.net/viewtopic.php?pid=329248#p329248





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

Re: Is it worth getting Steem.

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


  


Re: Is it worth getting Steem.

If you're willing to use NVDA, Steam is a lot easier to deal with. Not accessible, not by a longshot, but it's, somewhat tolerable if you could call it that.

URL: http://forum.audiogames.net/viewtopic.php?pid=329247#p329247





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

Re: Teamtalk Server Hosting?

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Green Gables Fan via Audiogames-reflector


  


Re: Teamtalk Server Hosting?

What kind of operating system are you using, SirBadger? Perhaps I might be able to help you. You'll need to use command lines at some point, unless you want to do a lot of workarounds to avoid them.

URL: http://forum.audiogames.net/viewtopic.php?pid=329246#p329246





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

Re: Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : grryfindore via Audiogames-reflector


  


Re: Accessible calculator for windows

Hello there,for bookkeeping and accounting as we call it, excel or any accessible spreadsheet program works out pretty well and makes things far easier.Thanks for this topic though, I am using win10 too,and the calculator sucks so bad that I use the calculator in a game instead Grryf

URL: http://forum.audiogames.net/viewtopic.php?pid=329245#p329245





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

setup of teamtalk server

2017-09-11 Thread AudioGames . net Forum — Off-topic room : crashmaster via Audiogames-reflector


  


setup of teamtalk server

Hi.I am in a group currently on ventrilo.With ventrilo 4 being inaccessible the the group's admin has asked me how one would set up a teamtalk server on a server a vps one I assume linux.Documentation found on the bareware site suggests that I put the server unzipped ofcause in a writable location I assume a sub of the home folder I am not sure and just run tt5srv -wizzard and thats all.However I have never set one myself and its not mine as such.Do we need anything else and what are instructions to actually install things and configure it.What is the difference betwene demon and stand alone and what do we need to do.From what he has heard the admin thinks that there may be some troubles with things, is it just a matter of a hostname, port, ssl etc and password or is it more than that.

URL: http://forum.audiogames.net/viewtopic.php?pid=329244#p329244





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : Jeffb via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

I redownloaded it and it still gives me the error. The only thing in the language folder are 2 text documents.

URL: http://forum.audiogames.net/viewtopic.php?pid=329243#p329243





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

Re: Madden Accessibility Update

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


  


Re: Madden Accessibility Update

Hello everyone!Here is my next video redo, creating your own  franchise I hope you all enjoy it, and please give me some feedback on it!I hope the other videos are good aas well!https://www.youtube.com/watch?v=Yb6hmnnUV48Darrell

URL: http://forum.audiogames.net/viewtopic.php?pid=329242#p329242





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

Re: Alter Aeon September 2017 Update

2017-09-11 Thread AudioGames . net Forum — New releases room : Jayde via Audiogames-reflector


  


Re: Alter Aeon September 2017 Update

See, I thought you were supposed to give the book to one of the centaurs in magnesia first, and then eventually to the scholar Bruticus up in the Lotus Monastery, but it's been awhile. No, you haven't completely buggered it. Absolute worst-case scenario, if you give the thing to a mob who doesn't want it but takes it anyway, kill the mob and get it back.Congratulations on level 29, by the way. I just did the Shadowclaw Swamp area. If you haven't been there yet, I recommend that as a primary druid, you do it. And if you didn't get a staff from the trunk there, load it over until you do. That's a freaking epic staff.

URL: http://forum.audiogames.net/viewtopic.php?pid=329241#p329241





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

Re: Restricted/new users: introduce yourself!

2017-09-11 Thread AudioGames . net Forum — Introduce Yourself to Gain Access : leoguima via Audiogames-reflector


  


Re: Restricted/new users: introduce yourself!

my name is leonardo, and I registered in the forum audiogames.net to take questions, and to help other people about audiogames. I'm waiting to be given access so I can start using the forum.

URL: http://forum.audiogames.net/viewtopic.php?pid=329240#p329240





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

Re: New Audiogame: Audio Moto Championship available for PC and Mac!

2017-09-11 Thread AudioGames . net Forum — New releases room : crashmaster via Audiogames-reflector


  


Re: New Audiogame: Audio Moto Championship available for PC and Mac!

Well to be honest I found a bug in the game.I complete a race say of 2 -3 laps, the game play is harder than it looks to fast and you hit the sides, its really good and I am happy I payed for it early.However after you complete your laps you hit continue and you start the same track again, and again, if you then however quit and reload you move to the next track.So Either you have a certain number of races on one track or you just don't, and if you  don't then the game is not moving me over to the next track automatically on completion of one.To be honest I prefured the navigation systems and beeps as well as anouncements well some of them from audio rally racer.Also all bikes I have brought seem to sound the same.Really feel like I am racing but well good game guys.If you can fix that 1 little issue above then fine.\In addition to my last post.One of the bikes in the shop for the 125cc class has no description o
 r name I am not sure if tits like that for every class.

URL: http://forum.audiogames.net/viewtopic.php?pid=329224#p329224





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : crashmaster via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

Hmmm download the game again I guess.You should have the language files allready.Sadly some bgt games are detected by some antivirus programs as malware.On win7 I just exclude as they become a problem.However on win10, I am seriously thinking of having a folder for stuff that I know is not malware called unprocessed or something, I will first run the file to see if it is in fact malware normally but if its a game I will put it in a temperary location where I can run without it being scanned then later put it in its own folder and exclude it.Sadly I think a lot of script based code is flagged by default as harmfull probably because it potentially could be, that includes autoit, java and bgt, and at one stage a certain version of the nvda compilers for python was detected as a virus.It doesn't happen for all games though so for all we know it could be a certain thing or function.I had this with a chinese installer once for a game, it al
 ways said it was malware, the game ran fine.I got round that by making the installer in innosetup.I do wander to be honest how much it is to get a personal certifficate, no one will be able to afford any professional signing certs for well their pro projects especially if they are a small company.Then again all we need is a certifficate or something that says that we are a trusted company and not anything untoward.However there must be a way.I do wander if you could use a gpg or other key to sign your stuff for free or something or low cost.It wouldn't give us the flexability of say a signed whatever with all our blurbs, contact details company name, email address, etc, but I do wander what a minimal cert would cost.It doesn't even have to be for uac or admin access it just needs to be a dummy file to say stuff is ok.Then again if hackers could do that then you would have a problem.And in addition to certifficates expir
 ing they do get stolen or companies do mangle releases from time to time.I do wander though if an indevidual cert could be made, we don't need it to do much except get past security really.I do wander how those at nvda do it as nvda needs to run in uac and a few other things and nvaccess is opensource.

URL: http://forum.audiogames.net/viewtopic.php?pid=329239#p329239





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : Jeffb via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

When I run the game I get this error. ErrorLanguage files not found in directory media/language. Los archivos de idioma nose encontraron en el directorio media/languageOK

URL: http://forum.audiogames.net/viewtopic.php?pid=329238#p329238





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

Re: Humans vs robots, public beta released!

2017-09-11 Thread AudioGames . net Forum — New releases room : urameshi via Audiogames-reflector


  


Re: Humans vs robots, public beta released!

I think that there was a big tree on the map with river and lake, could you tell me the location of the tree?

URL: http://forum.audiogames.net/viewtopic.php?pid=329237#p329237





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

Re: I'm on PAX AUS's accessibility panel - please share your thoughts

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


  


Re: I'm on PAX AUS's accessibility panel - please share your thoughts

I didn't even know they did PAX in other countries, that's cool.

URL: http://forum.audiogames.net/viewtopic.php?pid=329236#p329236





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

Re: Teamtalk Server Hosting?

2017-09-11 Thread AudioGames . net Forum — Off-topic room : SirBadger via Audiogames-reflector


  


Re: Teamtalk Server Hosting?

ok so I just got myself a vps with 500gb banwidth per month, 20gb space and 512 mb ram nice and cheep. 25 bucks for a year. now I've no idea how to actually set up a teamtalk server on there. lol. all new to me. anybody got any simple guides? I'm using winSCP as a client for the vps which seems nice and screenreader friendly so far and is free. vps is set to windows x86 /x64.

URL: http://forum.audiogames.net/viewtopic.php?pid=329235#p329235





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

Re: Sonus GDE (Game Development Enviroment)

2017-09-11 Thread AudioGames . net Forum — Developers room : SirBadger via Audiogames-reflector


  


Re: Sonus GDE (Game Development Enviroment)

well as one of the few people that have seen the prototype, and that was a very old version, I can say it'll be worth waiting for. I can't wait to get my hands on one myself.

URL: http://forum.audiogames.net/viewtopic.php?pid=329234#p329234





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

Re: Sonus GDE (Game Development Enviroment)

2017-09-11 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Sonus GDE (Game Development Enviroment)

Re: sound count. It really depends. If sounds can be positioned at different locations, you could have am arbitrarily complex soundscape, after a fashion. You'd need to reserve slots for action sounds which could happen at any time, as well. If one were to go all out in terms of combining sounds—for example, an action game where every combination of weapon/enemy has its own sound file—you'd still need to reserve at least two slots for actions, possibly three or four. Which means you can only have 4-6 background sounds, which could be environmental, navigational, etc. It's not an insurmountable problem; it just means that the number of availible sound slots must be taken into consideration when designing more complex games.I suppose you can summarize it as soundscaping vs active information. More than 8 sounds demanding attention at once would indeed be overwhelming. On the other hand, my house is such that you can simultaneously hear up to four major appliances and whatever the weather is doing, and since they're spread out and none overpowers the others, it's possible to pay attention to whichever is most useful at any given moment. Eight is not unreasonable in either situation alone, but if they are to be combined, then you'd have to start setting priorities as to which sounds get cut off by which other sounds.Actually, some means of prioritizing sounds would probably help, in the absence of arbitrarily high numbers of sound slots. Etc, a high priority sound could interrupt a low priority sound and use its slot, or a distant sound might be cut off by something closer to the listener. Sounds that are primarily for flare would be lower priority than sounds that convey necessary information. Etc.

URL: http://forum.audiogames.net/viewtopic.php?pid=329233#p329233





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

Re: dragon ball z: infinite world modified save for us.

2017-09-11 Thread AudioGames . net Forum — General Game Discussion : mr . brunete via Audiogames-reflector


  


Re: dragon ball z: infinite world modified save for us.

hi, sorry for being so late, i was 4 days out of home, but here i am.firstly, about the map in IW, it's much easier tan the budokai 3 one, maps are not that big, they're 2.5 d, and you only walk to enter a mission.about the adventure mode, the unplayable missions are already completed, so, you can fight directly. if you accidentally go to an unplayable mission, just go back to the map and search for another one.this one is for all of you who use emulators.about ultimates and fussions, use the quicksave feature to help you. if you want, you can use it to know where the button sequence starts, or, if you want to get the timing, just try until you successfully land the ultimate.remember, you can know when the meter appears, because you can't pause the game, at least, while fighting the cpu or other player.about how the ultimates workit is a meter, that fills every now and then. you must press any button when the meter is f
 ull, or, as close as full as it can be. you must do it 3 times. if you successfully hit the meter more times tan your oponent, the ultimate will land successfully.if not, the effects vary from character to character.some ultimates will just do less damage, others will fail, and in one particular case, if you fail it, you do much more damage but you become instantly tired.about the mechanic involving button presses that your oponent must guess. that's not for ultimates, that's dragon rush from budokai 3.actually, in budokai 3 some ultimates can be executed by a successful dragon rush.. hahaha. dragon rush is completely accesible. but it's not present in infinite world.finally, about the sabe file.i have the multilanguage verssion of the game, but if you want, i can convert the sabe to the nort american region, if you have that particular one.

URL: http://forum.audiogames.net/viewtopic.php?pid=329232#p329232





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

Re: Bokurano Daibouken 3 : secondary topic

2017-09-11 Thread AudioGames . net Forum — New releases room : assault_freak via Audiogames-reflector


  


Re: Bokurano Daibouken 3 : secondary topic

Thanks for finding those funny... that was mostly my work! 

URL: http://forum.audiogames.net/viewtopic.php?pid=329231#p329231





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

Re: Knights of Valour is playable! Mostly...

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


  


Re: Knights of Valour is playable! Mostly...

Yep. And only in Europe, to boot.

URL: http://forum.audiogames.net/viewtopic.php?pid=329230#p329230





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : daigonite via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

These bugs sound very strange, and I'm wondering if its a bad compile or something (story_progress_handler should never be destroyed, and thus should always exist). I've put in safeguards in case. Also, will be adding text for chairs.

URL: http://forum.audiogames.net/viewtopic.php?pid=329229#p329229





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

Re: Bokurano Daibouken 3 : secondary topic

2017-09-11 Thread AudioGames . net Forum — New releases room : Axel-Leonardo via Audiogames-reflector


  


Re: Bokurano Daibouken 3 : secondary topic

Alright, I'll try it.Thank you so much!

URL: http://forum.audiogames.net/viewtopic.php?pid=329228#p329228





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

The Big List of Incubators, Accelerators, and Funding Opportunities

2017-09-11 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


The Big List of Incubators, Accelerators, and Funding Opportunities

From [Gamasutra], the link contains a list of funding opportunities available for game developers in various parts of the world, such as Malaysia, Bucharest, The Netherlands, Canada, the US, Paris, London, Berlin, Finland, Sweden, the UK, and Online Internationally.

URL: http://forum.audiogames.net/viewtopic.php?pid=329226#p329226





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

Is it worth getting Steem.

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


  


Is it worth getting Steem.

Is it worth getting steem? I am totally blind, and I use Jaws. I want to get steem because there is a spasific game that I like, and you can get it with steem, and any other way I have tried to get a hold of it has ended up at a dead end, but I want to know if it is worth getting the application. I got it before, and it was completely inaccessible, but some people say that they can use it, to some extent.

URL: http://forum.audiogames.net/viewtopic.php?pid=329227#p329227





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : crashmaster via Audiogames-reflector


  


Re: youtube-MP3 is no more

I use listentoyoutube.comIt has converted up to 2 or 6 hour vids and I use it for podcasts and movies.Its accessible, not sure about quality but its good enough.I would have recomended the applian conversion suite I use but there are some access issues with it and applian refuses to say its their issue which means once I have set a few things with the mouse maybe it will work fine.However its 200 bucks, its worth it but there are some things you need to mouse over to select and change.

URL: http://forum.audiogames.net/viewtopic.php?pid=329225#p329225





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

Re: New Audiogame: Audio Moto Championship available for PC and Mac!

2017-09-11 Thread AudioGames . net Forum — New releases room : crashmaster via Audiogames-reflector


  


Re: New Audiogame: Audio Moto Championship available for PC and Mac!

Well to be honest I found a bug in the game.I complete a race say of 2 -3 laps, the game play is harder than it looks to fast and you hit the sides, its really good and I am happy I payed for it early.However after you complete your laps you hit continue and you start the same track again, and again, if you then however quit and reload you move to the next track.So Either you have a certain number of races on one track or you just don't, and if you  don't then the game is not moving me over to the next track automatically on completion of one.To be honest I prefured the navigation systems and beeps as well as anouncements well some of them from audio rally racer.Also all bikes I have brought seem to sound the same.Really feel like I am racing but well good game guys.If you can fix that 1 little issue above then fine.

URL: http://forum.audiogames.net/viewtopic.php?pid=329224#p329224





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

Re: Bokurano Daibouken 3 : secondary topic

2017-09-11 Thread AudioGames . net Forum — New releases room : UltraLeetJ via Audiogames-reflector


  


Re: Bokurano Daibouken 3 : secondary topic

by the way, has anyone looked at their stats? the ones that you can generate on the very last level of the game on 25? the inventory is sadly not getting translated but all the combat stats are and boy... they are just really really funny. A few examples and some of them I did on purpose with the aero gear for example, to advance fast through levels:Number of times your spacebar was simply mashed repeadtedly during gameplay.:209325Number of times you tried your best, even while blocking attacks with your armour or shield, to avoid them at the same time by bouncing around like a madman:2Number of times you tried your best, even while blocking attacks with your armour or shield, to avoid them at the same time by bouncing around like a madman, and collided with obstacles because you weren't paying attention:0Number of times you mashed your enter key like a maniac:67721 oh yeah. tasty, tasty bread! yum yum yum!Times you were annoyed with the navigati
 on of your Skyracer and interrupted it with ESC:645and so on and so on. I am surprised at how much and how incredible vast this game is... and all done by mostly a single person!!! ...  thank you thank you thank you!

URL: http://forum.audiogames.net/viewtopic.php?pid=329222#p329222





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

Re: bk3, a few questions on weapons

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


  


Re: bk3, a few questions on weapons

ah, Ok. SO apparently the ball was not close enough to the piece of magic when that happened, gotcha. Should I get the defense way up to survive? hahaha my stats right now are:All statusHP: 8310/8310 (100.00% remaining)Stamina: 5050/5050 (100.00% remaining)Shield: Not equippedLevel: 228. Assignable points: 0Attack: 873Defence: 1556Tech: 300Stamina: 5050Location: 0 0Playing mode: Difficult. oh yeah. I had no idea that control C was useful for copying the entire contents of a list.

URL: http://forum.audiogames.net/viewtopic.php?pid=329221#p329221





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

Re: android who i can start

2017-09-11 Thread AudioGames . net Forum — Developers room : victor01 via Audiogames-reflector


  


Re: android who i can start

Helloand thank youbut from what I was told, java 8 is already enabled, and, where it should appear, only the jaws appear.what do I do?and already replaces the dlls

URL: http://forum.audiogames.net/viewtopic.php?pid=329220#p329220





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

Re: bk3, a few questions on weapons

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


  


Re: bk3, a few questions on weapons

ah, Ok. SO apparently the ball was not close enough to the piece of magic when that happened, gotcha. Should I get the defense way up to survive? hahaha my stats right now are:All statusHP: 8310/8310 (100.00% remaining)Stamina: 5050/5050 (100.00% remaining)Shield: Not equippedLevel: 228. Assignable points: 0Attack: 873Defence: 1556Tech: 300Stamina: 5050Location: 0 0Playing mode: Difficult

URL: http://forum.audiogames.net/viewtopic.php?pid=329221#p329221





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

Re: Developing games for ios or android?

2017-09-11 Thread AudioGames . net Forum — Developers room : victor01 via Audiogames-reflector


  


Re: Developing games for ios or android?

Helloand thank youbut from what I was told, java 8 is already enabled, and, where it should appear, only the jaws appear.what do I do?and already replaces the dlls

URL: http://forum.audiogames.net/viewtopic.php?pid=329219#p329219





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : nidza07 via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

Cool game. The gameplay gets a bit boring, but a nice idea. Started translating it as well. No worries guys it's not a trojan, don't believe in every small thing your antivirus tells you.

URL: http://forum.audiogames.net/viewtopic.php?pid=329218#p329218





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : nidza07 via Audiogames-reflector


  


Re: youtube-MP3 is no more

Hi, pontes media downloader can actually get playlists, just make sure you update to the latest version. With that said, i do recomment spending some time to figure youtube dl out, and either use what Hrvoje provided or create a config file so you don't have to type any options.

URL: http://forum.audiogames.net/viewtopic.php?pid=329217#p329217





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : slender via Audiogames-reflector


  


Re: youtube-MP3 is no more

@11, see this Torrent Freak article for an explanation.

URL: http://forum.audiogames.net/viewtopic.php?pid=329216#p329216





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

Re: Madden Accessibility Update

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


  


Re: Madden Accessibility Update

@Orin  I wonder if the Giants That you played with were as bad as our Giants were in last nights game. lol Our  defense was fantastic.  Tough game.  @Darrell  appreciate the Videos, I'll be checking those out.

URL: http://forum.audiogames.net/viewtopic.php?pid=329215#p329215





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : Valmorian via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

I reverted back to an earlier vertion of the game, it seems to have fixed the bugi can't  seem to interact with any of the chairs.___ERROR inaction number 1of Other Event: User Defined 0for object env_drawer:Data structure with index does not exist.at gml_Object_env_drawer_Other_10

URL: http://forum.audiogames.net/viewtopic.php?pid=329200#p329200





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : Liam via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

So interestingly enough antivirus has never flagged any of my games as having viruses and they are also written in BGT. Windows defender flagged this as being a trojan. Anyone have more info on what would cause this. is there maybe a particular code block or function people are using?

URL: http://forum.audiogames.net/viewtopic.php?pid=329214#p329214





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : dd via Audiogames-reflector


  


Re: youtube-MP3 is no more

@hrvoje holy shit, seriously? that's frickin' amazing

URL: http://forum.audiogames.net/viewtopic.php?pid=329213#p329213





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

Re: Explanation from Somethinelse

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


  


Re: Explanation from Somethinelse

And that really shows Ios's unreliability as a platform for incredibly involved audio games of this type.shotgunshell wrote:Although I suppose there are people who are gullible enough to buy another device, thinking there's no way they can get screwed over again, because all they can think about at that given moment is, "When can I message my boy/girl/best friend," or something like that.You nailed it. Those are exactly the kind of people Apple will feed off of to buy the latest and greatest handset, because when their old device slows down they're just gonna think it's getting old, and will have no idea that Apple is force-stalling them to get you to upgrade. I e, the people who buy an iphone without using a computer first, and want something that just works.

URL: http://forum.audiogames.net/viewtopic.php?pid=329212#p329212





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

Re: Sonus - Audio Game Console

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


  


Re: Sonus - Audio Game Console

There are a few game demos available with the original prototype, but they're a bit dated.

URL: http://forum.audiogames.net/viewtopic.php?pid=329210#p329210





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

Re: Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : turtlepower17 via Audiogames-reflector


  


Re: Accessible calculator for windows

There are a couple of options you can try.The first is called Speak on Calc Pad, which can be found at:http://www.speakon.org.uk/SpeakOn-CalcPad.htmlIt's self-voicing, and uses Espeak by default, although you can change that. It has basic and scientific functions. One of my friends told me that there was no way he would ever install it because it needs Java to run, and he doesn't like having Java installed on his computers, so if you care about that, try the second option. Otherwise, it's free, it's lightweight, it's fast, and it worked well all the times I've used it.the other option you have if you don't like this program for whatever reason is to use the classic calculator for Windows 10. You didn't specify that this was the OS you're using, but I think that might be the case because you said that the results weren't easy to navigate, and th
 e interface did change with the new modern calculator app. if that's your issue, and you don't mind replacing the new calculator with a more accessible experience, download the installer for the classic one from here:https://winaero.com/download.php?view.1795Personally, I like all of Winaero's utilities, and this is no exception. Either way, you can't really go wrong with these two programs I just mentioned.

URL: http://forum.audiogames.net/viewtopic.php?pid=329204#p329204





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

Re: Knights of Valour is playable! Mostly...

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


  


Re: Knights of Valour is playable! Mostly...

So this is only on PSN? Damn.

URL: http://forum.audiogames.net/viewtopic.php?pid=329202#p329202





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : turtlepower17 via Audiogames-reflector


  


Re: youtube-MP3 is no more

Thanks for sharing that. It's true, Pontes media Downloader does have trouble downloading playlists. I'm not even sure if that functionality is supposed to be supported. It's rare when i want to download one, though, so I don't worry about it too much. if you download playlists frequently, I can see how that would be a problem.

URL: http://forum.audiogames.net/viewtopic.php?pid=329201#p329201





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : Valmorian via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

I reverted back to an earlier vertion of the game, it seems to have fixed the bug

URL: http://forum.audiogames.net/viewtopic.php?pid=329200#p329200





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

Re: Jaws eloquence crash strings

2017-09-11 Thread AudioGames . net Forum — Off-topic room : turtlepower17 via Audiogames-reflector


  


Re: Jaws eloquence crash strings

Jaws works better with Spotify than NVDA does? Not the last time I checked, which was about 6 or 7 months ago. Both can utilize the basic functions of the player, such as listening to and searching for tracks. However, I couldn't add songs to playlists using JAWS. Considering this is the entire reason I pay for a Spotify account, that's definitely a dealbreaker. I could, at that time, use NVDA to add songs, although it required a lot of use of object nav to get it done. Since an update to Spotify maybe 3 or 4 months ago, neither screen reader will do it, so it's kind of a moot point now, and I have to use the IPhone app if I want to tweak my playlists. But it's definitely a misnomer to say that NVDA doesn't work with Spotify and JAWS does, because there are features that neither can access. Oh, and you can't change your settings using either screen reader, either.

URL: http://forum.audiogames.net/viewtopic.php?pid=329199#p329199





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

Re: Explanation from Somethinelse

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


  


Re: Explanation from Somethinelse

shotgunshell - as far as I'm aware the upkeep cost Vs revenue was the initial reason. although that won't so much be because of the share that Apple take of the money, bear in mind that they had no advertising or in app purchases, once someone has bought it they get no money more money after that. But that's only the initial reason. Since then they have stopped making software altogether, they're now solely an advertising company and don't have any developers, all of the developers have left.lord_raven - no, you are under no contract at all to keep things updated. you can also pull anything from the store any time you wantAlso, earning some money does not equal earning enough money to make it a profitable enterprise. Audiogames are pretty niche small market things, and given their voiceover talent etc they will not have been cheap to make. Far easier to turn a profit making a mainstream game that also happens to be accessible... e.g. diceworl
 d. And far easier if you aren't tied to a premium upfront cost business model.It's not a case of failing to foresee any need to updating, it's a case of the OS update frequently completely breaking the game. That's not a reasonable thing to predict.If I had built an app that had managed to make enough sales to cover its development costs but not much more, and sales had dropped off to a minimal trickle, and I was then hit with successive high update costs that I knew future sales would not be enough to cover.. I'd pull it without a second's hesitation.Also Somethin Else did not change the type of business they are, they just closed one small division of the company. Companies usually do that when the division is not making a profit, or not making enough profit compared to other areas so they want to divert their funds into the more profitable areas.

URL: http://forum.audiogames.net/viewtopic.php?pid=329198#p329198





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Hrvoje via Audiogames-reflector


  


Re: youtube-MP3 is no more

I'm using youtube-dl, but I'm starting it via my custom-made .bat file so I don't have to type manually from the command line. And I've set it up so it loads all links from a .txt file, which allows me to download multiple links at once, the program's output such as error messages or download progress goes into the log file and it's the best option for me because it works automatically and the application is updated regularly. Here it is: https://1drv.ms/u/s!Akk-AqrdWpjom25shpx_G1gtxBOc

URL: http://forum.audiogames.net/viewtopic.php?pid=329196#p329196





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

Re: Alter Aeon September 2017 Update

2017-09-11 Thread AudioGames . net Forum — New releases room : Dark via Audiogames-reflector


  


Re: Alter Aeon September 2017 Update

I've just got to level 29 with my druid and still have lots of quests to do on arcaise before I'm done, but hay I'm not  too much of a hurry.

URL: http://forum.audiogames.net/viewtopic.php?pid=329197#p329197





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

Re: bk3, a few questions on weapons

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


  


Re: bk3, a few questions on weapons

I had wondered if the dial on level 18 affected it but I think it does nothing so I am out of luck and cannot craft the bat. I checked the main thread and found nothing. Edit! found it again! You have to store every thin plate you have, (not weapon) in the warehouse. So running out of thin plates will make that box appear again.  Few!Regarding the magic ball, its kind of hard... I think you can deflect actually most attacks. It drops a piece of magic when you finish the second attack. that alone is difficult. I press R as soon as the level starts. then, As soon as I hear fireballs coming my way, I take a defense drink and jump  and also make sure that I am still reflecting the attacks! you will get damage from the fireballs, but really just make sure that you deflect the thunder because it comes in pretty fast after the fireballs and can attack you even if you are jumping in the air (the magical ball follows your height so using the ufo will not help at all 
 anyway). When the piece of magic is dropped, then it attacks using an ice cube. You can deflect that without any problems too. Apparently, the dark projectile it launches damages and destroys the piece of magic but I am really not sure if you still have to be reflecting the attack with the magical edge at that point, because even though it destroyed the piece of magic it caused no damage whatsoever to the ball. Then it starts again with fire. And that is when I died because I was nowhere prepared for it. hahahahathat is what I know so far.

URL: http://forum.audiogames.net/viewtopic.php?pid=329193#p329193





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

Re: Explanation from Somethinelse

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


  


Re: Explanation from Somethinelse

shotgunshell - as far as I'm aware the upkeep cost Vs revenue was the initial reason. although that won't so much be because of the share that Apple take of the money, bear in mind that they had no advertising or in app purchases, once someone has bought it they get no money more money after that. But that's only the initial reason. Since then they have stopped making software altogether, they're now solely an advertising company and don't have any developers, all of the developers have left.lord_raven - no, you are under no contract at all to keep things updated. you can also pull anything from the store any time you wantAlso, earning some money does not equal earning enough money to make it a profitable enterprise. Audiogames are pretty niche small market things, and given their voiceover talent etc they will not have been cheap to make. Far easier to turn a profit making a mainstream game that also happens to be accessible... e.g. diceworl
 d. And far easier if you aren't tied to a premium upfront cost business model.It's not a case of failing to foresee any need to updating, it's a case of the OS update frequently completely breaking the game. That's not a reasonable thing to predict.

URL: http://forum.audiogames.net/viewtopic.php?pid=329198#p329198





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

Re: bk3, a few questions on weapons

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


  


Re: bk3, a few questions on weapons

I had wondered if the dial on level 18 affected it but I think it does nothing so I am out of luck and cannot craft the bat. I checked the main thread and found nothing. Edit! found it again! You ahve to store every single collection item you have, (not weapon) in the warehouse. Regarding the magic ball, its kind of hard... I think you can deflect actually most attacks. It drops a piece of magic when you finish the second attack. that alone is difficult. I press R as soon as the level starts. then, As soon as I hear fireballs coming my way, I take a defense drink and jump  and also make sure that I am still reflecting the attacks! you will get damage from the fireballs, but really just make sure that you deflect the thunder because it comes in pretty fast after the fireballs and can attack you even if you are jumping in the air (the magical ball follows your height so using the ufo will not help at all anyway). When the piece of magic is dropped, then it attacks 
 using an ice cube. You can deflect that without any problems too. Apparently, the dark projectile it launches damages and destroys the piece of magic but I am really not sure if you still have to be reflecting the attack with the magical edge at that point, because even though it destroyed the piece of magic it caused no damage whatsoever to the ball. Then it starts again with fire. And that is when I died because I was nowhere prepared for it. hahahahathat is what I know so far.

URL: http://forum.audiogames.net/viewtopic.php?pid=329193#p329193





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

Re: my youtube channel

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Angel via Audiogames-reflector


  


Re: my youtube channel

I subscribed.Please subscribe to me!Seark for:Dragos GreceanuI am at a hi speed to give a link now, but later I will.Subscribe at the one with 23 or something like that, not at the one with onli 2.Is mine, but it is not running!

URL: http://forum.audiogames.net/viewtopic.php?pid=329195#p329195





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

Re: Bokurano Daibouken 3 : secondary topic

2017-09-11 Thread AudioGames . net Forum — New releases room : UltraLeetJ via Audiogames-reflector


  


Re: Bokurano Daibouken 3 : secondary topic

hi, this was discussed way back on this thread, but search feature never works too well here and the posts were not at all clear to begin with. so, 1. Start level 18.32. as soon as you start, reduce speed to 1 and altitude to 1, then press l3. land4. change the dial to 8.5. Complete stage 19.1, and it will be at around coordinates 250, 0.Happy to  give complete, accurate and updated information.

URL: http://forum.audiogames.net/viewtopic.php?pid=329194#p329194





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

Re: bk3, a few questions on weapons

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


  


Re: bk3, a few questions on weapons

I had wondered if the dial on level 18 affected it but I think it does nothing so I am out of luck and cannot craft the bat. I checked the main thread and found nothing. Regarding the magic ball, its kind of hard... I think you can deflect actually most attacks. It drops a piece of magic when you finish the second attack. that alone is difficult. I press R as soon as the level starts. then, As soon as I hear fireballs coming my way, I take a defense drink and jump  and also make sure that I am still reflecting the attacks! you will get damage from the fireballs, but really just make sure that you deflect the thunder because it comes in pretty fast after the fireballs and can attack you even if you are jumping in the air (the magical ball follows your height so using the ufo will not help at all anyway). When the piece of magic is dropped, then it attacks using an ice cube. You can deflect that without any problems too. Apparently, the dark projectile it launches damages
  and destroys the piece of magic but I am really not sure if you still have to be reflecting the attack with the magical edge at that point, because even though it destroyed the piece of magic it caused no damage whatsoever to the ball. Then it starts again with fire. And that is when I died because I was nowhere prepared for it. hahahahathat is what I know so far.

URL: http://forum.audiogames.net/viewtopic.php?pid=329193#p329193





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

Re: new spanish audio game: graffi's rock band

2017-09-11 Thread AudioGames . net Forum — New releases room : Angel via Audiogames-reflector


  


Re: new spanish audio game: graffi's rock band

Yes, bgt, but after I puted it in my bgt games folder, it said some tipe of trojan, so, what ever, I will try to play with it much when it will run!

URL: http://forum.audiogames.net/viewtopic.php?pid=329192#p329192





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : gamesmaster via Audiogames-reflector


  


Re: youtube-MP3 is no more

Why did it shut down?

URL: http://forum.audiogames.net/viewtopic.php?pid=329191#p329191





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : prajwal via Audiogames-reflector


  


Re: youtube-MP3 is no more

actually online video converter was awsomne cause there  no  duration limits and  main awsome thing they removed  convertion of  320 kb ps mp3  hq  file  dontknow it only give  290 kb ps  option i sad for this  i have  youtube downloders if u want  i can give it to u

URL: http://forum.audiogames.net/viewtopic.php?pid=329189#p329189





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

pokemon X or pokemon Y, does anyone have a download link?

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


  


pokemon X or pokemon Y, does anyone have a download link?

hi guyshope you are all finei am searching for pokemon x or y rom for nentendo dsbut i can't seem to find itany help would be very much appreciated

URL: http://forum.audiogames.net/viewtopic.php?pid=329188#p329188





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

Re: redspot review

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


  


Re: redspot review

@39agreed with the first part. However, its just as sorressean says. I keep trying to point this out. The key word here is stolen, stolen, stolen. I need a drink, lol.Almost sure the main reason there's vastly different opinions is because this wasn't really a public matter, thus public knowledge is lacking. I'm sure I can speak for Sam, Sorressean, and others by saying yes, the matter has been dealt with, however none of us condemns stolen code in any way, shape, or form. Neither will I support such a developer. In the long run, you make your own choices. You decide if this matters to you, or isn't a factor what so ever.For those who're still reading the topic, and I've got a strange feeling that's a relatively high number, I'll have you know that we've taken a special point of talking about the major issues presented here. All I'll say is the possibility of being inpersonated, while always their no matter the 
 game, has gotten much more difficult lately, same with balance.

URL: http://forum.audiogames.net/viewtopic.php?pid=329187#p329187





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

Re: youtube-MP3 is no more

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Riad via Audiogames-reflector


  


Re: youtube-MP3 is no more

You should try out that one:https://ytmp3.cc/I'm using this website ever since I began downloading YouTube Videos as MP3s, and I promise you will find it amazing both in speed and audio files storage, since it converts with a super high speed and you can even stream the audios you get from it in any program that supports streaming, and I think it stores them for a long time, and that's not a security issue since you do not have to create an account.

URL: http://forum.audiogames.net/viewtopic.php?pid=329185#p329185





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

Accessible calculator for windows

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Tensoon the Kandra via Audiogames-reflector


  


Accessible calculator for windows

A friend and I have to write board exams soon and one of our subjects is book keeping.  We both realized that we can't use any of the calculators we use in practice to write these exams with and we don't really want to spend money on fancy talking calculators for one exam.Does anyone have any suggestions for a simple to use calculator that is accessible with NVDA?I kind of just wish I could enter values into notepad and press enter.  I have tried the default windows calculator, but it does not always read all the values, and navigating it is not as easy as it could be.  I am really not looking for anything fancy, as long as it can add, subtract and calculate percentages it will work.

URL: http://forum.audiogames.net/viewtopic.php?pid=329186#p329186





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

Re: movie vault mirror

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Tensoon the Kandra via Audiogames-reflector


  


Re: movie vault mirror

Thanks for checking.  Do you perhaps know if Adventure Time is audio described, I don't necessarily want to get it from the movie vault, I just want to know if it is audio described at all.  That show has a lot of visuals one might miss.  I used to love watching it, but half way through season 7 I just started missing stuff.

URL: http://forum.audiogames.net/viewtopic.php?pid=329184#p329184





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

Re: I need help with storage.

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: I need help with storage.

I agree with those that say to use an external hard drive. If you want to absolutely make sure you won't lose data, purchase several external hard drives and make copies of your files. If one drive fails, you've got a few more to rely on. You can also purchase a new drive to replace the failed one. Also make sure you periodically update all your backup drives so you don't lose data. I personally use a 1 TB drive and have only used about 130 GB, so don't need more than 1 TB. In fact, 8 or 10 TB sounds like more storage than I'll use in a lifetime. Maybe that explains why I don't mind having a Mac with 120 GB of SSD storage.

URL: http://forum.audiogames.net/viewtopic.php?pid=329183#p329183





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

Re: Alter Aeon September 2017 Update

2017-09-11 Thread AudioGames . net Forum — New releases room : Jayde via Audiogames-reflector


  


Re: Alter Aeon September 2017 Update

It is always, always going to get harder when you hit the mainland, but there are a lot of areas around Ralnoth that will work well if you're careful. And yes, she's necro-cleric-mage. Ideally you should be level 28-30 by the time you finish with all three islands completely. I'm probably going to be 30, because I know where to grind a bit between quests.

URL: http://forum.audiogames.net/viewtopic.php?pid=329181#p329181





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : daigonite via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

I'll take a look at that, in my experience I've never had an issue, but it might be because whatever is causing that bug suddenly caused the system to get "decoupled" so to speak. need to weed out these issues this week. I don't have the game available on me at the moment, but to check global aura stats I believe it's the keyboard row ASDF but I'll check; I may have missed the actual description of the aura effect.To equip the mittens, there are two ways - either go into your party menu, go into your items and select the mittens from your bag. then it will move to the selected player. Or, you can open the item menu, use "give" and give it to the appropriate character.

URL: http://forum.audiogames.net/viewtopic.php?pid=329180#p329180





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

Re: New Audiogame: Audio Moto Championship available for PC and Mac!

2017-09-11 Thread AudioGames . net Forum — New releases room : shrike via Audiogames-reflector


  


Re: New Audiogame: Audio Moto Championship available for PC and Mac!

Firstly please provide a demo.2nd I would not pay 250 for a game even if it came with Taylor Swift for a week and me having full access to her.250 for an audio game? jesus Christ what are they putting in there pasta over there these days because I want to order some.

URL: http://forum.audiogames.net/viewtopic.php?pid=329179#p329179





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : Valmorian via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

___FATAL ERROR inaction number 1of Draw Eventfor object MusicHandler:Unable to find any instance for object index '298' name 'story_progress_handler'at gml_Object_MusicHandler_Draw_64it seems that the wall sounds keep getting stuck on, , started while exploring marks house.and for some reason when I loaded the game the sound came on when I opened the menu

URL: http://forum.audiogames.net/viewtopic.php?pid=329177#p329177





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

Re: has anyone got a link to these series?

2017-09-11 Thread AudioGames . net Forum — Off-topic room : shrike via Audiogames-reflector


  


Re: has anyone got a link to these series?

hi again guys,was just wondering if anyone could post links to the American dad series if its on the blind mice movie vault, sadley the vault is not accessible for me.

URL: http://forum.audiogames.net/viewtopic.php?pid=329178#p329178





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : Valmorian via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

___FATAL ERROR inaction number 1of Draw Eventfor object MusicHandler:Unable to find any instance for object index '298' name 'story_progress_handler'at gml_Object_MusicHandler_Draw_64it seems that the wall sounds keep getting stuck on, , started while exploring marks house

URL: http://forum.audiogames.net/viewtopic.php?pid=329177#p329177





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

Re: Colors - A New RPG aiming to be both mainstream and for the blind

2017-09-11 Thread AudioGames . net Forum — New releases room : Valmorian via Audiogames-reflector


  


Re: Colors - A New RPG aiming to be both mainstream and for the blind

___FATAL ERROR inaction number 1of Draw Eventfor object MusicHandler:Unable to find any instance for object index '298' name 'story_progress_handler'at gml_Object_MusicHandler_Draw_64

URL: http://forum.audiogames.net/viewtopic.php?pid=329177#p329177





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

Re: Alter Aeon September 2017 Update

2017-09-11 Thread AudioGames . net Forum — New releases room : Chris via Audiogames-reflector


  


Re: Alter Aeon September 2017 Update

Necro cleric? Maybe I should rethink my strategy. Is the character necro cleric mage? That might actually work out a little better. I'd have more useful healing spells at this stage in the game. I'm still considering it. I love the first part of the game for all the quests and exploration. My real problems start when I get to the mainland and it turns into a grind fest. hmmm.

URL: http://forum.audiogames.net/viewtopic.php?pid=329176#p329176





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

Re: Jaws eloquence crash strings

2017-09-11 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: Jaws eloquence crash strings

I'm also curious to know. NVDA works well on many webpages. I also hear that NVDA is very good about supporting the latest web standards.

URL: http://forum.audiogames.net/viewtopic.php?pid=329175#p329175





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

Re: Knights of Valour is playable! Mostly...

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


  


Re: Knights of Valour is playable! Mostly...

There are no English voices, but as I said, the only major scene is the first one, if I'm not mistaken. And if you are in the Asian store, you won't see the English version... only in the UK store will you get the English one. They left it undubbed, because there is so little dialog it made little sense to dub it. Characters probably have three or four lines each, maybe a couple more.

URL: http://forum.audiogames.net/viewtopic.php?pid=329174#p329174





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

Re: I need help with storage.

2017-09-11 Thread AudioGames . net Forum — Off-topic room : afrim via Audiogames-reflector


  


Re: I need help with storage.

I have managed so far to fill only 260 gb, and there is stuff there that I don't need. That's why I was curious.

URL: http://forum.audiogames.net/viewtopic.php?pid=329173#p329173





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

Re: Knights of Valour is playable! Mostly...

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


  


Re: Knights of Valour is playable! Mostly...

in my PSN store I see the game also, however all the things is in chinese, including the voices itself. there is no english version when I look at the free to play category

URL: http://forum.audiogames.net/viewtopic.php?pid=329172#p329172





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

Re: Racing games?

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


  


Re: Racing games?

ok guys, if you want to have fun to cause some destruction by crashing in to things, you could try burnout legends if you have a PSP.

URL: http://forum.audiogames.net/viewtopic.php?pid=329171#p329171





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

  1   2   >