Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : marro via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

hi,besides, you might want to upgrade anyway because windows 7 is ending support this year. You can get windows 10 for free if you don't care about modifying your background and such, you can just run without activation. If you are still in school you might want to see if you can get microsoft 2019 for free using their 360 program. I got office this way for my own use. Yes you have to find a different solution when it runs out but it works for now. I moved on from windows 7 a year ago and i honestly don't care about the system anymore. I think it's a matter of getting used to.

URL: https://forum.audiogames.net/post/502643/#p502643




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : SkyLord via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

@11, i'll agree. But, i won't press thumbs up.

URL: https://forum.audiogames.net/post/502642/#p502642




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : SkyLord via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

windows10 forever. Fuck all other windows versions.

URL: https://forum.audiogames.net/post/502641/#p502641




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


Re: I need more Japanese blind games

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : luyi via Audiogames-reflector


  


Re: I need more Japanese blind games

I really want to play more Japanese blind games, especially RPG, I like it very much。

URL: https://forum.audiogames.net/post/502640/#p502640




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


Re: Prefered Settings for ESpeak?

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Mayana via Audiogames-reflector


  


Re: Prefered Settings for ESpeak?

Mine is English (American), Male 7, rate 35 with rate boost (but I'm slowly increasing it as I get used to the voice), pitch 50, inflection 40.

URL: https://forum.audiogames.net/post/502639/#p502639




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


crazy party board mode

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : rory-games via Audiogames-reflector


  


crazy party board mode

This is the topic for the sadly overlooked board mode in crazy party. share what you know about key points on the board, like where the game squares, gifts and banks are.

URL: https://forum.audiogames.net/post/502638/#p502638




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : moaddye via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

hey, I'm still using windows seven. and 0. absolutely 0 bugs. so yeah, it's still good. I don't like win10 anyway

URL: https://forum.audiogames.net/post/502637/#p502637




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


Re: Fixed angle graphics, Pygame, and some more limitations...

2020-02-18 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Fixed angle graphics, Pygame, and some more limitations...

Bleh, I should play around with this a bit more, but here's an example using a perspective view at a fixed 45 degree angle, as opposed to an orthographic view. The quad surfaces are viewable only from the front, though I have another example using cube models that uses PySTL I can also throw in. Use the arrow keys to pan the camera around, you can also adjust the color or alpha transparency of the quads trivially by adjusting the color bits of each vertex in the vertex lists. I can also put together another one for applying textures.import pyglet
pyglet.options['shadow_window'] = False
from pyglet.gl import *
from pyglet.window import key
import math

class Example(pyglet.window.Window):
def __init__(self):
super(Example, self).__init__(640, 480, resizable=True, fullscreen=False, caption="Example")
self.clear()

#Enable blending
gl.glEnable(GL_BLEND)
gl.glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)

#Enable transparency
glEnable(GL_ALPHA_TEST)
glAlphaFunc(GL_GREATER, .1)

self.render = pyglet.graphics.Batch()

self.images = []

#quad 1
x,y,z = -0,-65,64
self.images.append(self.render.add(4, pyglet.gl.GL_QUADS, None,#group(1),
('v3f',((x),(y),z, 32+(x),(y),z/2, 32+(x),32+(y),z/2, (x),32+(y),z)),
('c4B',(255,255,255,255)*4)))
#quad 2
x,y,z = -32,-65,96
self.images.append(self.render.add(4, pyglet.gl.GL_QUADS, None,#group(1),
('v3f',((x),(y),z, 32+(x),(y),z-32, 32+(x),32+(y),z-32, (x),32+(y),z)),
('c4B',(255,255,255,255)*4)))
#quad 3
x,y,z = -64,-65,64
self.images.append(self.render.add(4, pyglet.gl.GL_QUADS, None,#group(1),
('v3f',((x),(y),z, 32+(x),(y),z+32, 32+(x),32+(y),z+32, (x),32+(y),z)),
('c4B',(255,255,255,255)*4)))

#change first textures color to red and make it semi transparent
self.images[0].colors = (255,0,0,128)*4

self.position = [0,0,-140]
self.rotation = [0,-45]

#up, down, left, right
self.scroll = [False,False,False,False]

self.key_input = []

glEnable(GL_DEPTH_TEST)

glEnable(GL_CULL_FACE)

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)

setup_fog()


pyglet.clock.get_fps()
self.fps_display = pyglet.clock.ClockDisplay()
pyglet.clock.schedule_interval(self.update, .01)


def update(self,dt):
if 'UP release' in self.key_input:
self.scroll[0] = False
elif 'UP press' in self.key_input:
self.scroll[0] = True
if 'DOWN release' in self.key_input:
self.scroll[1] = False
elif 'DOWN press' in self.key_input:
self.scroll[1] = True
if 'LEFT release' in self.key_input:
self.scroll[2] = False
elif 'LEFT press' in self.key_input:
self.scroll[2] = True
if 'RIGHT release' in self.key_input:
self.scroll[3] = False
elif 'RIGHT press' in self.key_input:
self.scroll[3] = True

if self.scroll[0] == True:
self.position[2] += 1
if self.scroll[1] == True:
self.position[2] -= 1
if self.scroll[2] == True:
self.position[0] -= 1
if self.scroll[3] == True:
self.position[0] += 1

if len(self.key_input) > 0:
self.key_input = []

self.draw()


def on_key_press(self,symbol,modifiers):
self.key_input.append(key.symbol_string(symbol) + " press")
print key.symbol_string(symbol) + " press"

if symbol == key.ESCAPE:
self.close()


def on_key_release(self,symbol,modifiers):
self.key_input.append(key.symbol_string(symbol) + " release")
print key.symbol_string(symbol) + " release"


def draw(self):
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
glMatrixMode(GL_PROJECTION)
glLoadIdentity()
gluPerspective(65.0, self.width / float(self.height), 10.0, 1000.0) #near/far clipping planes

glMatrixMode(GL_MODELVIEW)
glLoadIdentity()
#rotation view
x, y = self.rotation
glRotatef(x, 0, 1, 0)
glRotatef(-y, math.cos(math.radians(x)), 0, math.sin(math.radians(x)))
#movement view
x, y, z = self.position
glTranslatef(x, -y, z)

#initialize depth buffer
glClear(GL_DEPTH_BUFFER_BIT)
glEnable(GL_DEPTH_TEST)

#bind textures for rendering batch(s)
self.render.draw()

#disable depth buffer
glDisable(GL_DEPTH_TEST)
glColor4f(1, 1, 1, 1)

glLoadIdentity()
self.fps_display.draw()

def setup_fog():
""" Configure the OpenGL fog properties.

"""
# Enable 

Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : rowangarel98 via Audiogames-reflector


  


Re: Stories of destruction.

So This isn't something I did, but my sighty friend Jake was throwing a football up in the air and catching it. Thing is, Their were four wine glasses on the refrigerator and the ball smashed down on top of two of them. The reason that this story is so funny to me is because I did loose two of my glasses, but sighties are always telling us to be careful and stuff. Anyway, we finally managed to get the glass hoovered up into the rubish bin, but the next day I was rushing out of the room to get to class and I knocked the whole damn thing over. That was not a fun clean up.

URL: https://forum.audiogames.net/post/502635/#p502635




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


Re: Titan Conquest: a light-weight mobile mmo

2020-02-18 Thread AudioGames . net Forum — New releases room : blindndangerous via Audiogames-reflector


  


Re: Titan Conquest: a light-weight mobile mmo

Ah, I was wondering about that. I liked it, but then it just disappeared.  Glad to hear it's back.

URL: https://forum.audiogames.net/post/502634/#p502634




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


Re: Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Dan_Gero via Audiogames-reflector


  


Re: Friend Gets Weird Message After visiting BSG

Update. She removed Ad Block + and it made the problem go away. I installed it myself to test the site and see if it would show the same pop up, but it never did. It's really weird, but fortunately she doesn't see that issue anymore. If anyone has any ideas on why Ad Block would do that, please do let me know.

URL: https://forum.audiogames.net/post/502633/#p502633




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


Re: BrogueSpeak, an accessible roguelike

2020-02-18 Thread AudioGames . net Forum — New releases room : firefly82 via Audiogames-reflector


  


Re: BrogueSpeak, an accessible roguelike

Oh a lot of thanks for letting me know about this!

URL: https://forum.audiogames.net/post/502632/#p502632




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


Re: Question for Mozilla Thunderbird users

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Tensoon the Kandra via Audiogames-reflector


  


Re: Question for Mozilla Thunderbird users

LMFAO!You just changed my life, thank you!

URL: https://forum.audiogames.net/post/502631/#p502631




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : rory-games via Audiogames-reflector


  


Re: Stories of destruction.

As you can imagine, my many destructive topics and bad decisions on the forum must come from somewhere, right? correct! I have many to share.Do you remember the bop it air, with it's fun gestures that you could do, like hammer it, nail it, etc etc? well, let's just say this. I was slightly angry one time, so I decided a bop it game would be just the thing to cheer me up. So bop it!I bopped, fineHammer it!I hammered it, sure, smash! right onto the glass coffee table.One time, I was in the kitchen getting some sugar out of the cupboard because I was annoyed about not getting any chcolates, so I went to bake some nice biscuits (which I must say were very delicious) -- however, in my haste to begin working, I conveniently forgot about the flower placed next to the sugar. a forceful tug promptly sent both bags (and most of what was inside) crashing to the ground in a powdery mess.One time, I had a dream that I was rolling along the floor at a tremendous speed. I woke up to find that this was true. and crash! into the wall I went. Safe to say I don't consider that to be one of the dreams I'd like to continue.My brother was in the kitchen one time to pull some things out of a high drawer. the drawers were old and rickety, and apparently, near the end of their lifespan. He opened the drawer a little bit too far, and the drawer tipped. I heard an enormous smash! and there went all of the glasses, cups, bottles and jars my home possessed.I have a similar story to someone else's on here, I can't remember, I did a front flip on the trampoline, and I landed on the net of the trampoline, and started sliding down. To my credit, I stayed reasonably calm. Ok fine! I was screaming a little bit. Then, down came the trampoline, and -- smaash!One time some of my friends and I were playing a jumping game where we jumped over a high ledge on the edge of the school sand pit. I was on my third jump when my right foot nicked the concrete on top of the ledge and down I came, onto the concrete. Blood was everywhere and I had a huge scar that ran down from my eye to my chin with blood coming out of it. I was quickly bandaged up and sent home. I got on my computer to play crazy party, and luckily, I had no brain injury-I achieved a new high score of 41 on space invasion! It's safe to say I was very tired though and may as well have fainted then and there.Speeking of crazy party, it was my first time playing crazy party in grade  3 or 4, and I was in an extremely bad mood as I had hurt myself at school that daywhen I encountered "underground facility"After that, I saved up for a new lap top. The little guy's been a good computer to me to this day though, so I suppose that was a bonus.

URL: https://forum.audiogames.net/post/502630/#p502630




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


Re: Question for Mozilla Thunderbird users

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Ian Reed via Audiogames-reflector


  


Re: Question for Mozilla Thunderbird users

With the message open and focused, or with it focused in the list of messages you can press alt M to open the Messages menu, then press H to open the attachments sub menu.From there you can arrow up and down to see what attachments exist, save all, open all, or save or open them individually.Hope this helps.

URL: https://forum.audiogames.net/post/502629/#p502629




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


Re: Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : jack via Audiogames-reflector


  


Re: Friend Gets Weird Message After visiting BSG

Her browser must be infeced, my site is not experiencing this. Then again I went from a locked down firefox with noscript/ublock origin to the Brave browser, so nothing's penetrating my security that easily.I would have her visit the site in safe mode and see if that changes things.

URL: https://forum.audiogames.net/post/502628/#p502628




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


Re: Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : omer via Audiogames-reflector


  


Re: Friend Gets Weird Message After visiting BSG

if its not her i s p ignore it

URL: https://forum.audiogames.net/post/502626/#p502626




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : rory-games via Audiogames-reflector


  


Re: pranks that went too far

I did that to a mac once when i about 5, but then, suddenly, I realized I forgot how to turn off voiceover. My parents thought it would be fine, so we left. it wasn't.Also, there was this one iPad, at school, which used to be my ipad: blue ipad 12, well it wasn't mine, but it was the one with all the accessible software installed on it. The kids took it to the teacher to get fixed, but o course they couldn't. I kept on saying "I know what's wrong I can fix it" but of course, I got a d in technology for not being able to click and drag, even though I beat the IT guy in a hacking battle one time.So there sat blue iPad 12, rendered useless for around 17 months.Oof!

URL: https://forum.audiogames.net/post/502627/#p502627




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


Question for Mozilla Thunderbird users

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Tensoon the Kandra via Audiogames-reflector


  


Question for Mozilla Thunderbird users

Is there a quick and easy way to jump NVDA to the attachments? I use several workarounds but none of them are really what I am looking for.When focusing on message, jumping to the bottom and then pressing tab highlights an attachment if there is only one, but if there are more than one it just says unknown.The other method I use would be using the mouse to click on the attachments pane but sometimes that is easier said than done.Lately I would just press Ctrl+F to forward and then use application key to open attachments in attachment pane since it is easier to navigate to it when editing a message.I can't help but think that I am being very stupid and that there must be an easier way...

URL: https://forum.audiogames.net/post/502625/#p502625




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


Re: rs cards against humanity anyone?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : ignatriay via Audiogames-reflector


  


Re: rs cards against humanity anyone?

I'll be around at 7:00 or thereabouts tomorrow. In savannah, so you guys might be one hour ahead / behind depending, at least for some

URL: https://forum.audiogames.net/post/502624/#p502624




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: pranks that went too far

@11 the second one made me crack up lol. The first one is also pritty funny. Would be interested to do it just to see how would they react...

URL: https://forum.audiogames.net/post/502623/#p502623




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


Re: Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: Friend Gets Weird Message After visiting BSG

This is very strange behavior indeed. Could it be something with the sight?

URL: https://forum.audiogames.net/post/502622/#p502622




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Mitch via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

Very true. That's why I didn't jump in to voice my criticisms for a certain game that will not be mentioned here. i really couldn't understand why people liked it, and I wanted the developer to know that it was not very good from what I thought about it. However, I didn't post my critcisms here, as I felt like I couldn't be construcjive in any way.

URL: https://forum.audiogames.net/post/502621/#p502621




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Jayde via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

lol See, I used that word without even thinking twice.So, something I wanted to add to the stew a little bit.There are people out there who get pissed if you slam a game, even if you do it constructively. This isn't helpful.But most of the time when folks get roasted for slamming a game, it's because they were out to really tear it down. People took issue with my criticism of Manamon 2 because, while I was constructive - or tried to be - I was also relentless. It's true. I was. I am.  Whether that's too far, I don't know. I did try and recognize its good points - it's far better than its prequel, for instance - but still, it's an impression I gave. I think that part of this is that the writer of the blog has the idea that he should basically be able to say what he wants, and that it's everyone else's responsibility to wade through the poorly worded mess and figure out what he's truly trying to say. Here's the problem though: written media, especially, is a minefield. When you say things, it is partially up to your audience to understand you, or to ask if they're unclear. But it's also up to you - and this means everyone, not just the dude who wrote the article - to make your communication as clear as you reasonably can. Use a weird word occasionally? Fine. Get technical from time to time? Fine. But if your criticism is 75% rant and 25% constructive feedback, it's hard to see the latter because it's slathered all over with the former. And that's partially your fault.The short version is that this is coming from a source that just sort of hurls stuff at the wall to see what sticks. I don't believe this makes him a particularly credible source, as this tendency also makes him the type to take any slamming of those purporting to speak their mind as some sort of limitation on free speech. Uh, no, that's not how this works. If you're like, "Nuh bruh this game is bad cuz u cant shoot on diagnels and there are no boms and so this game sucks cuz all u do is run n shoot so plz make it more like TK where you could atleast jump kthx"...that's not constructive, and it's not a useful bit of feedback. When I see a player hammer a game or a dev this way, I usually jump in, because even if the game is awful - and sometimes it is - being constructive is better than just attacking. And if all you want to do is have your say all the way to the end, then yes, sometimes you're gonna say stuff you shouldn't and then get called out for it.

URL: https://forum.audiogames.net/post/502620/#p502620




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Mitch via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

Also, sorry about the double post, but I'd like to claricy to the *vast* majority of people what the word "obfuscate" means. From a cursory search on Google:verb. render obscure, unclear, or unintelligible. There's my good deed for the day. Have fun!

URL: https://forum.audiogames.net/post/502619/#p502619




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


Re: Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Mitch via Audiogames-reflector


  


Re: Friend Gets Weird Message After visiting BSG

Holy crap. T's..a lot of data? I don't really know how much I've used, and haven't looked up how yet, but it does seem like a lot. There could be something wrong though, so I'm that sure what the issue is.

URL: https://forum.audiogames.net/post/502618/#p502618




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Mitch via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

I'm assuming that he changed his name to distinguish him from Soren, when he began posting more frequently on the forum. But honestly, while I agree to some extenar that there are "grovelling at the feet of developers" (I see this much more frequently on the AppleVis forum over this  one), and while I  do feel like there tends to be a lack of innovation (and some games can become boring), I can understand why we should be appreciative of what we have. We didn't have this many games 10 years ago, but I do agree with many of the points that the blog brought up. There does seem to be quite a lot of "you get what you get, and I'm perfectly content with this." That's great and all, but sometimes there are blatant flaws that could (and should) be ironed out, that are overlooked to continue the perceived "ego stroking". (could be wrong, and I'm not trying to accuse anyone of ego-stroking just for ego-stroking). However, for example, while ersonally didn't take away from it the "make games more complex" argument, I took away more of a "make them more engaging and worth the price." I do agree though that the words were a bit harsh. Even if there are things that you disagree with, don't call someone a "buffoon" just for the sake of having being a buffoon.

URL: https://forum.audiogames.net/post/502617/#p502617




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


Friend Gets Weird Message After visiting BSG

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Dan_Gero via Audiogames-reflector


  


Friend Gets Weird Message After visiting BSG

I'm not having this problem on this website myself, but my friend gets this message when visiting. Strangely enough, she only gets the message on this website.blackscreengaming.com wrote:Usage Alert: You have reached 86.6% of your data allowance! For the billing period ending 2020-02-20, you have used 649.4 GB of data, which is 86.6% of the data allowance under your current plan. You may want to adjust your plan or usage to make sure you don't incur charges. You will be charged $10 for every 50 GB of data you use beyond your allowance in any billing period. When you exceed your allowance, you can still use the internet at your leisure and we won’t slow your speed but you will incur charges. For customers who have our highest internet speed package, an unlimited data plan is available for an additional cost.Call us at 888-336-4466 or click “View Plans” to pick a tier that’s right for you.OK, thanksView PlansView usage detailsRemind me laterabout:blank Strangely enough, the phone number points to an ISP called Ritter Communications, who she does not use at all. It also only did this on BSG, which I have no issues with on my end. We know this message is a hoax, but we don't know why it's showing up. Does anyone have any ideas?

URL: https://forum.audiogames.net/post/502616/#p502616




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


Re: Prefered Settings for ESpeak?

2020-02-18 Thread AudioGames . net Forum — Off-topic room : arturminyazev via Audiogames-reflector


  


Re: Prefered Settings for ESpeak?

helloi'm using Variant Max, Rate 99, Pitch 40, Inflection 75, Voice Russian

URL: https://forum.audiogames.net/post/502615/#p502615




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : RTT entertainment via Audiogames-reflector


  


Re: pranks that went too far

Hi guys. So, I have a couple for you. This first one has nothing to do with computers. I regret even thinking about it to this day. In the summer of 2018, I was listening to a local radio personality named whack head Simpson. He basically does prank calls. I thought that it would be a good idea to call the municipality and ask them if I could do my driving test in braille. I didn’t actually go through with it, but I regret to think what would have happened if I did. Luckily one of my friends stopped me. This second one is  hilarious!  So, if you guys remember, I was talking about the crazy study schedule that was at my previous school. We were board. My friend, who is a networking genius, had an idea. Basically, he will use the computers in the dorm and get access to the network. Not only that, he managed to use some remote desktop application to get access to the schools server! He then went online and started looking for code for network interference programs. Basically, he was able to shut down the server after displaying what ever text he desired. So, he would engage this program and everyone who was using the computers, including staff, would have been able to see something like shut the Fuck up, You stupid bitch Before the server, and their computers unexpectedly crashed. He didn’t do this on such a big scale though. He only used the dorm computers. The prefect caught him red-handed. LOL!

URL: https://forum.audiogames.net/post/502614/#p502614




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


Re: Rhythm Rage Level Creator Version 9.5

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Zarvox via Audiogames-reflector


  


Re: Rhythm Rage Level Creator Version 9.5

Ok, I have decided to try mega, however, the download is not available yet. I have a question. I noticed an error with achievements, and I am smoothing macro code to work better. Should I release the already complete 9.5, or finish updating the macro code and release 9.75? The 4 things that would be fixed are:aliases in require were listed before the achievement beganExtra comma when pasting aliases and macros issue would be fixed.Two new options that were already complete that I was too lazy to add into version 9 release.A bug since version 5, where the current macro is always assigned to the macro in progress, so this means if you set a macro as current, and started making a new macro, it would overlap the 2 strings together.I haven't proven that last issue is something that actually happens, but they both use the same variable, so to make sure it won't happen for sure, the current macro will be a different string than the macro in progress.What do you think? Release already complete 9.5, or spend another day or 2 making these mostly small changes for version 9.75 instead of waiting til version 10?

URL: https://forum.audiogames.net/post/502613/#p502613




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


Re: Prefered Settings for ESpeak?

2020-02-18 Thread AudioGames . net Forum — Off-topic room : crescent via Audiogames-reflector


  


Re: Prefered Settings for ESpeak?

this is how I use it on a daily basis. american English, max, rate is 45 with rate boost on, pitch 40, inflection 75.

URL: https://forum.audiogames.net/post/502612/#p502612




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Ethin via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

@8, I wouldn't be surprised. I honestly can't trust the guy with his scripts and strange programs that no one else but him can read or comprehend. I prefer NTLite TBH... much better. Can be difficult to use, but once you've figured it out it can work some pretty badass magic.

URL: https://forum.audiogames.net/post/502611/#p502611




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

BTW, completely OT but just a curious question if I may, when did Xvordan get a name change?  I don't see any record of that in the topic concerning this matter and honestly thought there were 2 Kai's running around.  Confusing me isn't funny, you know. :d

URL: https://forum.audiogames.net/post/502610/#p502610




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Boo15mario via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

I also added the desktop Gadgets back. it works like it did on windows 7.

URL: https://forum.audiogames.net/post/502609/#p502609




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@Jayde that takes a lot of guts to admit to, but I know where you're coming from.  I also had a project I seriously wanted to get going to rival every space and futuristic game currently available, thought I had a good team assembled, but between school, home life and other things we just never could colaborate properly, and I never had money to give them which I seriously wanted to do, so while I wrote out the story, showed them a timeline I had in mind as to how the whole thing could lead up to future events that I had carefully researched, had plotlines and ideas for them to code and possible event senarios for the public launch, I think the project was honestly sunk before it ever really got a chance to get off the ground.  I don't blame them; coding is a tough business regardless who's doing it and how passionate you are.

URL: https://forum.audiogames.net/post/502608/#p502608




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : jimmy69 via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

It isn’t that bad SovsyAlso, thumb me up if you agree

URL: https://forum.audiogames.net/post/502607/#p502607




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : jimmy69 via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

It isn’t that bad Sovsy

URL: https://forum.audiogames.net/post/502607/#p502607




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


Re: file replace question box not working in my tts converter

2020-02-18 Thread AudioGames . net Forum — Developers room : jacerbt via Audiogames-reflector


  


Re: file replace question box not working in my tts converter

It was all because I didn’t make it check the right location for the file.

URL: https://forum.audiogames.net/post/502606/#p502606




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


Re: What browser games can be played on the iPad

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : jimmy69 via Audiogames-reflector


  


Re: What browser games can be played on the iPad

Get the client on your computer

URL: https://forum.audiogames.net/post/502605/#p502605




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


Re: rs cards against humanity anyone?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : jimmy69 via Audiogames-reflector


  


Re: rs cards against humanity anyone?

Angel, it makes literally no difference for you putting and exclamation   Point   Except cluttering up the screen readers  Also I am on pretty regularly and I’m down whenWever

URL: https://forum.audiogames.net/post/502604/#p502604




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Nocturnus via Audiogames-reflector


  


Re: Stories of destruction.

Few of my own:I knocked a Yamaha DGX-500 off a stand.  It fell on its side and cracked all along that particular side, and sadly that was the right side, which is where the floppy drive was; never worked again.I had an HP pavilion laptop back in o4 or o5, can't exactly remember, that fell out of the trunk of a car onto solid pavement.  The back busted open and chips went all over the freaking place and some of the keys popped right off the keyboard.  What keys were left looked like they too could come off as the rest of the thing lifted up around the corners.  Even the fan was cracked along the sides.  I didn't dare to try and see if I could somehow fix that thing.I used to use a sansaclip mp3 player with rockbox as an improvised hearingade when I didn't have any.  By hitting the record option and having it monitor what the mic was picking up and wearing a pair of earbuds I got along quite nicely.  I'd wrap the wire around my neck and loop it over and over again until it was short enough that it wasn't really all that intrusive; what can I say, I was sincerely desperate and had no way of getting hearingades at the time.  Everythinwas going well, , until the day when I forgot I had it on and steppe in the shower.  What followed was a rather thunderous wooshing sound which gradually grew softer and softer, until I heard nothing else...My cousins and I were running around a trailor park I used to live in.  The streets were pretty quiet there and there were quite a few speedbumps to keep cars at a slow pace.  It was really an easy place for a blind person to get used to and not get hurt in.  It served as a wonderful place growing up because I was able to learn to ride my bike, skateboard, rollerblade and a bunch of other stuff.  The problem this time around was that, as I was running I was entirely unaware that my grandpa had come to visit.  His picup truck had just pulled into our parking space and he had already gone into the house.  I smashed into it full force, slamming my left leg, right above the knee, straight into the trailor hitch.  The pain was so immense that I fell back in such a way that my right leg gave out, pounding my right knee into the pavement hard enough that I actually got a rock embeded in it.  There was me with my left thigh busted open and bleeding like crazy and my right knee torn up and with a rock sticking out of it.  If ever there was a time I cried like a baby even though I wasn't one, that would have been the day.

URL: https://forum.audiogames.net/post/502603/#p502603




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Jayde via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

I am in complete agreement with Nocturnis on this.There are some good points here, but the way they're worded obfuscates them, very badly. There's obviously a lot of personal bias invested in the article, which is fine on the surface of things, but it's also very clearly written by someone who couldn't be bothered to get distance.Frankly, with this poster's history of doing things like this, I'm not surprised. That said, I accept, as I did even years back, that there are some good things being pointed out here, so if I can help in some way, I'm game.It is a lot harder to plan a good game than some people realized. Do you folks remember when I was talking about building an RPG? Well, that never got off the ground. I'd love it if id did, but it requires a crapton of effort that I wasn't as prepared for as I thought I was.

URL: https://forum.audiogames.net/post/502602/#p502602




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


Re: best way to share zip files?

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Zarvox via Audiogames-reflector


  


Re: best way to share zip files?

So mega then. Ok. I tried uppit before checking this topic, and there is a visual challenge I can't solve. So yeah not worth it. Thanks for the help guys.

URL: https://forum.audiogames.net/post/502601/#p502601




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : jack via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

@boo15mario: What exactly have you taken out of windows 7 to put into 10, apart from the task manager, explorer without ribbons, etc? Anything we should know about?@exodus re: windows Jen, something tells me it's connected to Daniel Nash and the Jennux project, but I don't know for sure. It's a set of system tweaks that streamline Windows 10 more, but unless I can get a good look at this package, I feel safer/more secure having made the tweaks myself without knowing such a modified software stack existed. Nevertheless, if someone has more info on it that would be helpful.

URL: https://forum.audiogames.net/post/502600/#p502600




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


Re: Is it absolutely necessary to know C/C++ on a great level?

2020-02-18 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Is it absolutely necessary to know C/C++ on a great level?

@16, fair enough. I just hate apps that are ridiculously huge for no reason. Electron would be far better if it just used the native built-in web browser engine.Linux's accessibility is a paradox of sorts: the accessibility is terrible because there are few users and very few contributors to Orca and ATK and vie-versa. The paradox needs to be broken though but more people need to move to Linux to break it.

URL: https://forum.audiogames.net/post/502599/#p502599




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@40, I too have lost interest in most audiogames.  I used to think it had to do with my being too old, and maybe it does, but I think, ironically enough, that there's a possibility the underlying issue is, something the article only somewhat hints at, that I feel audiogaming is currently catering to a select few, not to a wider audience, much like mainstream gaming is sort of stuck extending franchises or producing what it thinks will bring in the bucks.

URL: https://forum.audiogames.net/post/502598/#p502598




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


Re: I need more Japanese blind games

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : boy via Audiogames-reflector


  


Re: I need more Japanese blind games

I don't know about Unded, but I know that Hachamecha Adventure is very hard to understand unless you know Japanese, which I do. Wish I had something I could upload for others to play. Are there other games that I might have that are missing from either the Audio Games archive or this forum?

URL: https://forum.audiogames.net/post/502597/#p502597




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


Re: I need more Japanese blind games

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : stirlock via Audiogames-reflector


  


Re: I need more Japanese blind games

I actually have them on an external drive. His games are nearly incomprehensible.

URL: https://forum.audiogames.net/post/502596/#p502596




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


Re: Is it absolutely necessary to know C/C++ on a great level?

2020-02-18 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Is it absolutely necessary to know C/C++ on a great level?

Linux accessibility is terrible to the extreme from a technical perspective and has a tiny number of blind users.  Chrome not investing time there is frustrating, but it almost certainly comes down to money, not performance hits.  That said, I also wouldn't be surprised if it turned out that Linux accessibility has performance hits beyond the other platforms for some technical reason that we're not aware of.Electron gives you a cross platform experience with code that can also be used on the web, automatic updates, automatic installer building, and the ability to get web devs working with it.  The value add to a sighted business is tremendous.  And to be honest the value add to the projects of mine where it's a good fit is also tremendous because of things like React.  Plus the entire Node.js ecosystem is available to you, which makes any networking task you can imagine easy--databases, custom protocols, VOIP, whatever.I have considered prototyping React backed by WX.  This is a huge project that won't happen and I really wish React Native would support desktop platforms, but all the money is either web apps or desktop apps, so that'll probably never happen.But to be sort of on topic: knowing JS isn't a bad idea.  node.js is backend and absurdly popular, probably in the top 5 things that people use to write server stuff in these days.

URL: https://forum.audiogames.net/post/502595/#p502595




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Sovs via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

Thanks @9Truth be told, it wasn't as much my english being slightly off as my mouth being kind of fucked. I am bourn with something called a cleft palate wich makes my speaking kind of weird. If you don't know what a cleft palate is, google it. Thank you anyway.

URL: https://forum.audiogames.net/post/502594/#p502594




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


Re: getting entombed for free?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : rwbeardjr via Audiogames-reflector


  


Re: getting entombed for free?

Easy.Go to blind-games.com, download the game, hit upgrade, hit create account, e-mail the address shown on the web page, and then wait

URL: https://forum.audiogames.net/post/502593/#p502593




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


Re: bk2 question

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : nyanchan via Audiogames-reflector


  


Re: bk2 question

press hammer or magic line.

URL: https://forum.audiogames.net/post/502592/#p502592




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


Re: I need more Japanese blind games

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : nyanchan via Audiogames-reflector


  


Re: I need more Japanese blind games

I think I can obtain unded.

URL: https://forum.audiogames.net/post/502591/#p502591




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


Re: Docker usage

2020-02-18 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Docker usage

99% of the time the job is going to tell you how to set up lamp.  If they're saying docker, they're probably going to hand you a docker compose file and you're going to set up docker and type something to the effect of compose up at a shell.  It is rare that setting up your development environment is completely on you.  Most sighted devs don't know how to run a LAMP stack themselves, and most software is complicated enough that knowing how to run a LAMP stack isn't enough anyway.  Also keep in mind that your employer is interested in your success.  I think you're planning ahead too much.  You have enough options to make this work that the best way forward is to find out more and then work it out, at least in my opinion.In the event that you *do* actually have to set up your own development environment entirely from scratch then Docker will possibly be your friend, as you can get MySQl running pretty easily.  But WSl really does run all of this fine as well.  It just won't start it automatically, so you'll have to i.e. use tmux and run Apache and MySQL in other windows.Tmux is useful because it's tabs for the terminal, yes.  I have my own little workflows around it so that I can have one terminal with test output and one for running the compiler and etc.

URL: https://forum.audiogames.net/post/502590/#p502590




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


Re: Do you read the purchase topic?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Trajectory via Audiogames-reflector


  


Re: Do you read the purchase topic?

I skim through it from time to time.I think it's pretty natural to start ignoring sticky topics after a while, which is part of why I don't think it has the potential to do as well as it could.Most of us aren't super well to do either and can't afford to be constantly giving stuff away.Some people are doing fundraisers and other kinds of giveaways. I know it's hard but your best bet is probably to wait for one of those to come up.Maybe this summer I'll try my hand at running another little fundraiser like I did for Manamon II in November, but for any audio game this time.

URL: https://forum.audiogames.net/post/502589/#p502589




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : ross via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@38Sorry, I wasn't directing the butthurt thing at you, bad formatting on my end. The point still stands though. I just feel that people, on both sides, are being extremely dramatic about the topic. I get it both sides are passionate, but there's so much salt on both sides lol. For the record, I don't really have an opinion: audio games rarely interest me anymore. I suppose that's why I'm able to watch all of this ensue from an outside perspective.

URL: https://forum.audiogames.net/post/502588/#p502588




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


Re: I need more Japanese blind games

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : boy via Audiogames-reflector


  


Re: I need more Japanese blind games

I don't mean to bring this topic back or ask a question that's been asked befor, but there is another vanished Japanese developer known as Yokojiko who made 2 games in Text Game Maker. Are his games around anyware or are they gone for good like Shining Violet? I know one of them called ハチャメチャ大冒険 is on Galaxy Laboratory, but the other game is probably gone like Maguro. To find ハチャメチャ大冒険, click on software, then Hachamecha De Train. You will find a link that says something like, Hachamecha Original, Hachamecha Adventure Download.That's assuming you're using a translator, I can't find the actual Japanese text right now.

URL: https://forum.audiogames.net/post/502587/#p502587




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


Re: Do you read the purchase topic?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Lucas1853 via Audiogames-reflector


  


Re: Do you read the purchase topic?

No.

URL: https://forum.audiogames.net/post/502586/#p502586




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@33, Isn't that interesting?  I mean, the article is bashing games and game devs on the basis that they know how to do exactly that.  I come along and prove that the only thing this article is is just an exceptionally strong worded opinion; nothing more, nothing less.  You take issue with my post because you claim I'm "butthurt."  I promise you I'm not.  I'm amused.  The fact of the matter is that you can't have it both ways.  If you're going to voice an opinion on something because you feel you have the right to voice an opinion on something, you'd better be able to take the heat when that opinion is toasted, roasted, blasted or anything in between.  Besides, the idea here is that someone believes they can write whatever they want and everyone should just listen or look the other way.  Funnily enough, when it comes to audiogaming, this person isn't doing that.  They have the choice to look the other way, but instead they decided to write a snide commentary without any real support.  I'll give you that the basis is therre, but the whole thing is challenged by the emotional bagage that's tied to it and which, I personally believe inffluenced the article.for the record, I reiterate yet again that I agree with the idea;; the community and its devs need a lift, but this controversial pile of nonsense is not going to do that.Edited to include the following: Smoke, if you're reading this, or if anyone passes this along to you, and you really are trying to help the community rather than just stirring the pot for the sake of making ripples and trying to cash in on fame and glory or some other such useless short-term fickle feeling or self gratification, if you're honestly doing your best to put forth a foot in the right direction, let me know.  I'll willingly help.  I don't care how or what it takes; I'll willingly colaborate with you on an article, research for you, talk to you, share my experiences with you... Whatever.  No, I'm not saying I'm better than you... I don't believe that to be true.  What I am saying is that going at it rogue the way you're doing it isn't the way and I think you know it.  I'm not attempting to be offensive to push your buttons, make you mad, tell you to buzz off and stop writing or anything of the sort.  I want you to see your writing for what it is, the way @the dwarfer did when he first began posting out here; you would do well to look at how he's changed between his posting in the ultrapower topic and now.I want to help you, to help the community at large.  I want to advocate alongside you.  I want the market to change for the better, not for the worse.  I want to see greater releases and more titles at the same time.  I want the community to have its cake and eat it too.  No, I'm not looking for credit; I'm not looking for honor and glory.  I'm looking to make a change, even if it's just one word at a time, as I always have, as I always will.  Don't PM me if you're interested; I can't even read them anymore as the link doesn't appear for me.  Reply to me on this topic or contact me by adding nightvitality on skype.  If you prefer some other method of communication I'm open to that as well.  I seriously believe that your opinions are worth listening to even if they are badly tempered at present, but you need to be willing to refine them and you need to be willing to listen to what the other side has to say rather than just writing them off and calling them trash.  I'm putting this out there as an offer so that you realize I'm not your enemy and I don't want to be.  If you accept you'll make me happy, and perhaps we can get something done. 

URL: https://forum.audiogames.net/post/502581/#p502581




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@33, Isn't that interesting?  I mean, the article is bashing games and game devs on the basis that they know how to do exactly that.  I come along and prove that the only thing this article is is just an exceptionally strong worded opinion; nothing more, nothing less.  You take issue with my post because you claim I'm "butthurt."  I promise you I'm not.  I'm amused.  The fact of the matter is that you can't have it both ways.  If you're going to voice an opinion on something because you feel you have the right to voice an opinion on something, you'd better be able to take the heat when that opinion is toasted, roasted, blasted or anything in between.  Besides, the idea here is that someone believes they can write whatever they want and everyone should just listen or look the other way.  Funnily enough, when it comes to audiogaming, this person isn't doing that.  They have the choice to look the other way, but instead they decided to write a snide commentary without any real support.  I'll give you that the basis is therre, but the whole thing is challenged by the emotional bagage that's tied to it and which, I personally believe inffluenced the article.for the record, I reiterate yet again that I agree with the idea;; the community and its devs need a lift, but this controversial pile of nonsense is not going to do that.Edited to include the following: Smoke, if you're reading this, or if anyone passes this along to you, and you really are trying to help the community rather than just stirring the pot for the sake of making ripples and trying to cash in on fame and glory or some other such useless short-term fickle feeling or self gratification, if you're honestly doing your best to put forth a foot in the right direction, let me know.  I'll willingly help.  I don't care how or what it takes; I'll willingly colaborate with you on an article, research for you, talk to you, share my experiences with you... Whatever.  No, I'm not saying I'm better than you... I don't believe that to be true.  What I am saying is that going at it rogue the way you're doing it isn't the way and I think you know it.  I'm not attempting to be offensive to push your buttons, make you mad, tell you to buzz off and stop writing or anything of the sort.  I want you to see your writing for what it is, the way @the dwarfer did when he first began posting out here; you would o well to look at how he's changed between his posting in the ultrapower topic and now.I want to help you, to help the community at large.  I want to advocate alongside you.  I want the market to change for the better, not for the worse.  I want to see greater releases and more titles at the same time.  I want the community to have its cake and eat it too.  No, i"m not looking for credit; I'm not looking for honor and glory.  I'm looking to make a change, even if it's just one word at a time, as I always have, as I always will.  Don't PM me if you're interested; I can't even read them anymore as the link doesn't appear for me.  Write on this post or contact me by adding nightvitality on skype.  If you prefer some other method of communication I'm open to that as well.  I seriously believe that your opinions are worth listening even if they are badly tempered at present, but you need to be willing to refine them and you need to be willing to what the other side has to say.  I'm putting this out there as an offer so that you realize I'm not your enemy and I don't want to be.  If you accept you'll make me happy, and perhaps we can get something done. 

URL: https://forum.audiogames.net/post/502581/#p502581




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : boy via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

Completely agreed with 35! The blind comunity is doing the best they can to make games for people to play. The only reason certain people think these games are boring (in my oppinion) is because there are less blind people than sighted people, and we have jobs or college classes that are more important than games. That, is why it's taking me so long to make just one game. I'm trying to make it good, and I also have a job, plus college and I'm also graduating Perkins this year.

URL: https://forum.audiogames.net/post/502585/#p502585




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


Re: Titan Conquest: a light-weight mobile mmo

2020-02-18 Thread AudioGames . net Forum — New releases room : JasonBlaze via Audiogames-reflector


  


Re: Titan Conquest: a light-weight mobile mmo

yeah, I am useing the mobile version, will try again though  Installing it now

URL: https://forum.audiogames.net/post/502584/#p502584




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


bk2 question

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : dj_clue via Audiogames-reflector


  


bk2 question

So what weapon or hammer do I get to destroy the puzzle in the last room in stage 25 of bokurano daiboukenn 2?

URL: https://forum.audiogames.net/post/502583/#p502583




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


Re: Evelyn's Farm: iOS Idle Paranormal Adventure from maker of Nano Empire

2020-02-18 Thread AudioGames . net Forum — New releases room : Nocturnus via Audiogames-reflector


  


Re: Evelyn's Farm: iOS Idle Paranormal Adventure from maker of Nano Empire

You should feel excited and accomplished; my wife doesn't even send me PM's!  Boo hoo hoo!  

URL: https://forum.audiogames.net/post/502582/#p502582




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@33, Isn't that interesting?  I mean, the article is bashing games and game devs on the basis that they know how to do exactly that.  I come along and prove that the only thing this article is is just an exceptionally strong worded opinion; nothing more, nothing less.  You take issue with my post because you claim I'm "butthurt."  I promise you I'm not.  I'm amused.  The fact of the matter is that you can't have it both ways.  If you're going to voice an opinion on something because you feel you have the right to voice an opinion on something, you'd better be able to take the heat when that opinion is toasted, roasted, blasted or anything in between.  Besides, the idea here is that someone believes they can write whatever they want and everyone should just listen or look the other way.  Funnily enough, when it comes to audiogaming, this person isn't doing that.  They have the choice to look the other way, but instead they decided to write a snide commentary without any real support.  I'll give you that the basis is therre, but the whole thing is challenged by the emotional bagage that's tied to it and which, I personally believe inffluenced the article.for the record, I reiterate yet again that I agree with the idea;; the community and its devs need a lift, but this controversial pile of nonsense is not going to do that.

URL: https://forum.audiogames.net/post/502581/#p502581




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Boo15mario via Audiogames-reflector


  


Re: Stories of destruction.

@4 hahahahaha

URL: https://forum.audiogames.net/post/502580/#p502580




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


Re: rs cards against humanity anyone?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : ignatriay via Audiogames-reflector


  


Re: rs cards against humanity anyone?

yeah. That's a major downside lol.

URL: https://forum.audiogames.net/post/502579/#p502579




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


Re: Thoughts about the new immersive Audio RPG - The Cursed Painting

2020-02-18 Thread AudioGames . net Forum — New releases room : BryanP via Audiogames-reflector


  


Re: Thoughts about the new immersive Audio RPG - The Cursed Painting

Yeah. It just sucks there are only two battles to fight.

URL: https://forum.audiogames.net/post/502578/#p502578




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: pranks that went too far

@ Jaidon, not necessarily, that prank can still work. Just turn on voiceover, mute, turn down the volume all the way down, and turn off speech, but don't enable the screen curtain. That might work Even better, if you can, turn off the voiceover sounds, then it won't really matter if the volume is turned up or no. Hahaha. If it works... Its funny as heck.

URL: https://forum.audiogames.net/post/502576/#p502576




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: pranks that went too far

@ Jaidon, not necessarily, that prank can still work. Just turn on voiceover, mute, turn down the volume all the way down, and turn off speech, but don't enable the screen curtain. That might work Even better, if you can, turn off the voiceover sounds, then it won't really matter if the volume is turned up or no. Hahaha.

URL: https://forum.audiogames.net/post/502576/#p502576




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


Re: rs cards against humanity anyone?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : turtlepower17 via Audiogames-reflector


  


Re: rs cards against humanity anyone?

I'm a fan of that game myself, but a forum topic has the unfortunate disadvantage of having a serious time delay.

URL: https://forum.audiogames.net/post/502577/#p502577




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: pranks that went too far

@ Jaidon, not necessarily, that prank can still work. Just turn voiceover, mute, turn down the volume all the way down, and turn off speech, but don't enable the screen curtain. That might work Even better, if you can, turn off the voiceover sounds, then it won't really matter if the volume is turned up or no. Hahaha.

URL: https://forum.audiogames.net/post/502576/#p502576




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


Re: something keeps writing the hell out of my ssd

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Boo15mario via Audiogames-reflector


  


Re: something keeps writing the hell out of my ssd

yah, you need to upgrade to windows 10. I don't care why you don't like it but, you would be an idiot for using windows 7 in the first place. I would try linux or changeing windows 10 to fit your needs. I made a lot of system changes and I have been able to add some of the windows 7 programs back into windows 10.

URL: https://forum.audiogames.net/post/502575/#p502575




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: Stories of destruction.

Got some,I was in a piano performance a couple years back... Got so nervous that I messed up my playing a little too much... lol, but wasn't that bad in the end.Another time, I was working on my desk, a glass of water a ways off from my laptop, and as I was reaching over to grab it, my mind goes... Your gunna knock it over... I was like, hell no. Needless to say, I made a sudden move for the glass, knocking it over to the floor where it broke into bits.Oh yeah. I was with one of my cousin's at one time, we where both jumping in a trampoline our grandmother had. I got a little reckless and think I tried doing a front flip... The next thing I know, I here a loud, crack. Ened up with my right arm's bones both  the  radius and ulna broken in one go. Epic fail.

URL: https://forum.audiogames.net/post/502571/#p502571




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Nocturnus via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

@drums61999,Read that one as well, just more of the same. stupid, dumb, lets talk some shit, I've got my sharpy and it's better than yours and I'm going to use it and I don't really care what you have to say about it.  Fact? If you're going to write, you'd better care what people have to say about it, or else you're just writing to read and hear yourself.  You don't get anywhere by offending even half the community.  Remember what happened when Haily posted that crap about how the community was full of bla bla in her goodbye topic?  Yeah, same thing.  The author seems to think that because they have a blog they can post anything and there's no consequence.  They just don't see it at present, and they probably won't see it for years to come, but I assure you, it's there all the same.

URL: https://forum.audiogames.net/post/502574/#p502574




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: Stories of destruction.

Got some,I was in a piano performance a couple years back... Got so nervous that I messed up my playing a little too much... lol, but wasn't that bad in the end.Another time, I was working on my desk, a glass of water a ways off from my laptop, and as I was reaching over to grab it, my mind goes... Your gunna knock it over... I was like, hell no. Needless to say, I made a sudden move for the glass, knocking it over to the floor where it broke into bits.Oh yeah. I was with one of my cousin's at one time, we where both jumping in a trampoline our grandmother had. I got a little reckless and think I tried doing a front flip... The next thing I know, I here a loud, crack. Ened up with my right arm's radius and ulna... both at once... Epic fail.

URL: https://forum.audiogames.net/post/502571/#p502571




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : nyanchan via Audiogames-reflector


  


Re: pranks that went too far

Jayde wrote:3.     I noted the exact Windows shutdown string, and had it replaced with something like "fatal exception OE error has occurred at location...", making it sound like the computer was going to crash.lol!

URL: https://forum.audiogames.net/post/502573/#p502573




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Blind angel 444 via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

Thank you everyone for all of the help and Sovs you’re English is perfect to me don’t you listen to those fools and just hang out with us who are 100% okay with you.

URL: https://forum.audiogames.net/post/502572/#p502572




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


Re: What is Teamtalk and Discart and how do I use it as a blind person

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Blind angel 444 via Audiogames-reflector


  


Re: What is Teamtalk and Discart and how do I use it as a blind person

Thank you everyone for all of the help and Sovs you’re English is perfect to me don’t you listen to those fool’s and just hang out with us who are 100% okay with you.

URL: https://forum.audiogames.net/post/502572/#p502572




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : ignatriay via Audiogames-reflector


  


Re: Stories of destruction.

Got some,I was in a piano performance a couple years back... Got so nervous that I messed up my playing a little too much... lol, but wasn't that bad in the end.Another time, I was working on my desk, a glass of water a ways off from my laptop, and as I was reaching over to grab it, my mind goes... Your gunna knock it over... I was like, hell no. Needless to say, I made a sudden move for the glass, knocking it over to the floor where it broke into bits.

URL: https://forum.audiogames.net/post/502571/#p502571




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


Do you read the purchase topic?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Jaidon Of the Caribbean via Audiogames-reflector


  


Do you read the purchase topic?

Hello guys. I had asked if someone could buy AHC, my favourite audiogame for me, as well as several other people. We get no responces. I'm just wondering, do you guys check the topic?Thanks.

URL: https://forum.audiogames.net/post/502570/#p502570




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


Re: witch kind of movement do you prefer?

2020-02-18 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: witch kind of movement do you prefer?

Adel, that's a dumb question. What normal person prefers menu-based? LOL. I don't think much people will give you help with the map code though. I saw the story, and it seems to be going great. Just hope the story stayys consistant.

URL: https://forum.audiogames.net/post/502569/#p502569




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: Stories of destruction.

/Adel, its the same thing. Its just a typical situation of American vs English.

URL: https://forum.audiogames.net/post/502568/#p502568




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

I mean, video game devs do the same thing though.Freefire, PUBG, Mini Militia, Call of Duty, etc. Developers want to go after a market in which their sure people will enjoy/play. They wanna make sure they enter a field in which their dev costs, surver up keep and all the other costs are justified. So, its not limited to audiogames.It seems like minorities always like to look at thee majority, and compare it to their own group or comunity, even though they don't know a shit about what's going on in the sited world.While the post has some truth, it has some false.

URL: https://forum.audiogames.net/post/502567/#p502567




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : tayo . bethel via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

I'll weigh in with my two  cents here..For those who continue to compare audiogames to mainstream ones, I have a question. Why? The audiogame market is a niche market, the developers are usualy single individuals or small teams with limited time and finances, and many of them have to log hours at jobs that will keep them fed and pay the rent. Wht all of those considerations, is it a surprise that the games being produced are not eyewateringly complex marvels? Next question, and this is for the people who like to post destructive, instead of constructive, criticism. My question is  this: how does saying something like, "This game is Crap" or" ?this game is stupid" benefit anyone? Those are personal feelings, not valid facts that can be corrected. For example, I think that most sidescrollers are too simplistic for me and don't fit my style of game play. Does that mean they're not good games for someone else? No. Those people who post overwhelmingly negative reviews hit developers especially hard. Imagine a developer has just released a game. The game's idea is good,  but the game itself needs work. Constructive feedback and offers to help might, just might, get us a game many of us would be happy to play. Destructive criticism, on the other hand, definitely will rob us of the potential to have a good game from that developer. Let's take A Hero's Call as an example. This game was released in what passes for a cloud of multicoloured snowflakes on this forum. Everyone was super excited to have a full featured, fully voice acted RPG. It soon became obvious that, like everything else in this world, this game couldnt satisfy everyone. One person posted a  review emphasizing what he thought was bad about the game. And while the developers may or may not have taken this review to heart, this game hasn't been updated in quite some time, and the developers are silent. Now, I will freely admit that I am biased here; this game is one of my favorites and I think it has great potential; just as an example, a crafting system could be implemented using the elemental gems found in the game, and perhaps this was supposed to come in a later update. But how many games have been becalmed by a negatively and sometimes hostile reception?

URL: https://forum.audiogames.net/post/502566/#p502566




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


Re: rs cards against humanity anyone?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Blind angel 444 via Audiogames-reflector


  


Re: rs cards against humanity anyone?

How do I get the server to stay up? I login to my account and the server goes down and I cannot get any of the games to work. Please help me!

URL: https://forum.audiogames.net/post/502565/#p502565




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: pranks that went too far

I always knew Jayd was an evil bastard.I gotta try the iPhone thing, but here;s the thing. My mom is too damn smart to fall for that. I dropped my phone, the screen stopped working and the first thing she asked was, "Are you sure you didn't put on the privacy thing for blind people?"Gotta try again...As you guys know I'm in the process of a prank, that could make people I'm pranking look like idiots in front of the class.

URL: https://forum.audiogames.net/post/502564/#p502564




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


Re: Super liam: I just experienced nostalgia

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Mitch via Audiogames-reflector


  


Re: Super liam: I just experienced nostalgia

I'd like to say that I'm semi-okay at audiogames, but I just cannot beat the woods stage in Super Liam. Mostly due to my high frequency hearing loss and the fact that I can't hear the spiders come towards me, so I get ambushed by them a lot.

URL: https://forum.audiogames.net/post/502563/#p502563




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


Re: Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Gaki_shonen via Audiogames-reflector


  


Re: Stories of destruction.

I have one.me, my brother, and my2 sisters.we had double decker beds, witch is something like bunk beds, I think?anyways, we were playing a game in witch I have to kech them. short storry, one of my sisters fell off the top, broke a window, and hurt her arm.

URL: https://forum.audiogames.net/post/502562/#p502562




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


Re: A silly, but funny prank I'm going to do to my friends

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: A silly, but funny prank I'm going to do to my friends

Here's what spence. I'm going to call you and you're gonna help me. Or else you die. I know where you live, plus I'm going to Caramat tonight, so I'll be in the area.Fueled by roti I'll kill you and your family!

URL: https://forum.audiogames.net/post/502561/#p502561




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


dark blaze fight problem in TDV

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : jacerbt via Audiogames-reflector


  


dark blaze fight problem in TDV

I was playing TDV and got to the point after destroying the ratar towers and saved at the dark blaze fight. But after I tryed to load my game after getting killed this error log was generated and I can't load my save. I have an idea as to why, but I don't know if it is true. My LTS wasn't working at all after I had tagged and destroyed a gard tower, but that tower was destroied by some semmy ratar guited misles before the crous missle could make it there. Here is the log.Error log, created with build version 2.44.0.0: Error base exception: System.NullReferenceException: Object reference not set to an instance of an object.   at TDV.Missile.lockOn(Projector target) in C:\Users\munawar\projects\Three-D-Velocity\TDV\w_Missile.cs:line 37   at TDV.Weapons.use() in C:\Users\munawar\projects\Three-D-Velocity\TDV\Weapons.cs:line 573   at TDV.WeaponsHolder.activate() in C:\Users\munawar\projects\Three-D-Velocity\TDV\WeaponsHolder.cs:line 32Error Description: Object reference not set to an instance of an object.Stack trace:    at TDV.Missile.lockOn(Projector target) in C:\Users\munawar\projects\Three-D-Velocity\TDV\w_Missile.cs:line 37   at TDV.Weapons.use() in C:\Users\munawar\projects\Three-D-Velocity\TDV\Weapons.cs:line 573   at TDV.WeaponsHolder.activate() in C:\Users\munawar\projects\Three-D-Velocity\TDV\WeaponsHolder.cs:line 32Wil I have to restart my hole game because of this?

URL: https://forum.audiogames.net/post/502560/#p502560




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


Re: what are your thoughts on BSG's new blog post?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : boy via Audiogames-reflector


  


Re: what are your thoughts on BSG's new blog post?

It seems like all this blog post is doing is bashing developers that make their games for other players. If people are just putting up simple games for compliments from other people, I agree with that part of this topic and the blog. The other part of the post, though, seems like it's just saying to the developers,in my own words: "audio games should no longer exist because they're not as good as video games, boring and they're just the same game with different sounds. No change. For this reason, developers should just contact video game companies and ask them to put accessibility features in their games. Stop releasing games and working on code, just play video games." The topic about Manamon 2 being demonstrated in a program about sighted games says the same thing about audio games, they shouldn't exist. Did I miss some news about blind people and games or something? Hopefully the same thing won't happen with accessibility apps for phones and devices for the blind.

URL: https://forum.audiogames.net/post/502559/#p502559




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


Stories of destruction.

2020-02-18 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Stories of destruction.

Recount your tales of things being destroyed here. Broken window? Three thousand pounds of glass falling off of a banister?  That time a live music performance went totally wrong? I’ll tails are welcome.

URL: https://forum.audiogames.net/post/502558/#p502558




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


Re: Super liam: I just experienced nostalgia

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : turtlepower17 via Audiogames-reflector


  


Re: Super liam: I just experienced nostalgia

Lava Lake was always my favorite level. Then again, I tend to like parts of games that everyone else tends to despise, such as games like Extinguish the Wick, Across the Lava, and Extraterrestrial Volcano in Crazy Party. Hell, even the Flying Boat grew on me after awhile.I agree with those who have said that the modified sounds are annoying. I think what's so jarring about them is that it takes you out of the nostalgia, it just seems all wrong to play with different sounds.

URL: https://forum.audiogames.net/post/502557/#p502557




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


Re: A silly, but funny prank I'm going to do to my friends

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Gaki_shonen via Audiogames-reflector


  


Re: A silly, but funny prank I'm going to do to my friends

interestingvery, very, interesting!I say do it.hmm... if you could you could have make them say shit with gw or rp. liam knows what i'm talking about, then put that audio in the powerpoint.or you could just..never mind.

URL: https://forum.audiogames.net/post/502556/#p502556




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


Re: Thoughts about the new immersive Audio RPG - The Cursed Painting

2020-02-18 Thread AudioGames . net Forum — New releases room : Computergamer via Audiogames-reflector


  


Re: Thoughts about the new immersive Audio RPG - The Cursed Painting

I am as excited as you are. I have just finished the demo and I really liked it a lot.l

URL: https://forum.audiogames.net/post/502555/#p502555




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


Re: pranks that went too far

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Gaki_shonen via Audiogames-reflector


  


Re: pranks that went too far

rhahahahahahahahahahahahahahahahahah!nice, nice! funny!

URL: https://forum.audiogames.net/post/502554/#p502554




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


Re: What browser games can be played on the iPad

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Blind angel 444 via Audiogames-reflector


  


Re: What browser games can be played on the iPad

@2 what browser are you referring to? I’m having problems with the RS games site. I can login but the server always shuts down and I cannot get any of the games to work. So what do I do now?

URL: https://forum.audiogames.net/post/502553/#p502553




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


getting entombed for free?

2020-02-18 Thread AudioGames . net Forum — General Game Discussion : Gaki_shonen via Audiogames-reflector


  


getting entombed for free?

I heard about this somewhere on this forum, is it true? if it is, how will I get it?thanks forumites.

URL: https://forum.audiogames.net/post/502552/#p502552




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


  1   2   3   4   >