Sound Problems... (304 Not Modified)
Monkey Targets Forums/HTML5/Sound Problems... (304 Not Modified)
| ||
Alright, so it seems my game is having trouble with loading audio files OnCreate or something.1:65> GET F:/workdesk/Workdesk - Games/Pinkies Balloon Adventure/game.build/html5/data/sfx/pop.wav (304 Not Modified) 1:65> GET F:/workdesk/Workdesk - Games/Pinkies Balloon Adventure/game.build/html5/data/sfx/float.wav (304 Not Modified) 1:65> GET F:/workdesk/Workdesk - Games/Pinkies Balloon Adventure/game.build/html5/data/sfx/pop.wav (304 Not Modified) 1:65> GET F:/workdesk/Workdesk - Games/Pinkies Balloon Adventure/game.build/html5/data/sfx/hBump.wav (304 Not Modified) Sometimes I get these errors when the game boots up and more than often the audio still functions despite these errors (and sometimes they dont) Here's my game (as-is): http://misterbull.hostkart.net/ controls: z or x controls elevation left or right arrow keys controls movement while elevating space/exit/enter pauses the game |
| ||
I should add, it seems to be a problem with the web host. the game works 100% of the time when in build mode from Monkey. also there should be a flutter sound when your elevating. it doesn't seem to be playing here for some reason *checks to see if the file uploaded to the host successfully* :P |
| ||
304 is an HTTP response code, it means the content was requested by the client, however since the content hasn't been modified, the server answered "no need to send you the data again, it's the same data". Should the data be modified, it would be sent again. This is merely to keep the cache up to date but also to limit unnecessary transfers. It's not an error. You are just looking at the HTTP server Monkey uses to serve the data for html5, and that's one of the many responses it's sending out per requested object. Hope that clears it out :) |