Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Starz0r

Pages: 1 ... 11 12 13 14 15 16 17 18 19 20 [21] 22
301
Game Design / Advance SSound Guide
« on: June 27, 2013, 05:46:27 PM »
I recommend you go check Sephalos's Basics SSound Guide here before reading this.

I see alot of people have a problem with making music non-restarting with actual death music with SSound. I've already done this multiple times when making fangames with SSound and it is relatively easy to do.

Step One: Loading Your Music
When loading your music into SSound you probably do this:

global.RandomMusic1 = SS_LoadSound('/BGM/Track01.ogg', true);
global.RandomMusic1 = SS_LoadSound('/BGM/Track02.ogg', true);
global.RandomMusic1 = SS_LoadSound('/BGM/Track03.ogg', true);
global.DeathMusic = SS_LoadSound('/BGM/TrackDeath.ogg', true);

Change that to this:

global.RandomMusic1 = SS_LoadSound('/BGM/Track01.ogg', false);
global.RandomMusic1 = SS_LoadSound('/BGM/Track02.ogg', false);
global.RandomMusic1 = SS_LoadSound('/BGM/Track03.ogg', false);
global.DeathMusic = SS_LoadSound('/BGM/TrackDeath.ogg', false);

This loads the sounds as a whole instead of loading the sound as it is playing (Streaming). I recommend you put this in the Create Event of a object. I also recommend that you make it its own object or put it in the "init" object, as this freezes the screen until the sounds are completely loaded! (Similar to I Wanna Kill The Kamilia II).

Step Two: Non-Restarting Music

Now that the music is now loaded completely into the game we want to make the music not restart anymore. If you have the modified music script from YoSniper's Engine then this should work without having to change anything. Otherwise modify the code to make it work with what I'm about to instruct you to do. Go to your killPlayer(); script and do the following:

Remove sound_play(sndOnDeath);

Add:
SS_PauseSound(world.curMusic);
SS_PlaySound(global.DeathMusic);

In the loadGame(); script put this somewhere at the top:

SS_ResumeSound(world.curMusic);
SS_StopSound(global.DeathMusic);

Now you are done, have fun with non-restarting music! :D

Troubleshooting:
If your music freezes and restarts it is because you didn't load the music with streaming turned to false.

302
Video Games / Re: Cave Story
« on: June 27, 2013, 08:26:14 AM »
I bought the remake. Does that make me a bad person?  :BibleThump:

303
read 105 times, 0 replies. seems legit  :Kappa:

There is nothing really to say about this fangame. Unless someone has to tell me I made something wrong they will probably post here and tell me. Most people who downloaded this can't even get past the first room. :Kappa:

304
I did check the spam folder, yes.
Thank you for the feedback, we will try our best to improve the password recovery system.

305
General Discussion / Re: TwitchTV is Down
« on: June 26, 2013, 01:46:25 PM »
Everything seems to be fixed now. Everyone back to your regular scheduled program. :SoonerLater:

306
Speedcore and Breakcore is my favorite type of music \ :FrankerZ: /

307
Video Games / Re: Xbox "One"
« on: June 26, 2013, 01:32:01 PM »
I remember the days when consoles only played games, and maybe dvd's with no shitty social bulkware or included unwanted attachments to pay for, good times, good times.

Anyone remember when you could buy a console and play the games you bought and not have to deal with DRM bullshit. Yeah, I don't. :Kappa:

308
Password recovery does not actually send an email, so it does not work D:

It would be cool if a user could hide sigs.
Did you check spam? Because of how email systems are, our email system may be labeled as spam so I recommend you check there. If it isn't there please ask one of our admins to help you recover you password by verifying you are who you say you are.

309
Announcements / Staff Promotions [Updated 10/6/2016]
« on: June 24, 2013, 05:40:19 PM »
June 24, 2013:

August 12, 2013
  • Welcome Paragus to the Global Moderators
  • Welcome Denferok to the Community Managers

September 17, 2013
  • Welcome Zero-G back to the Administrators
  • Welcome infern0man1 to the Global Moderators

September 18, 2013

September 26, 2013


September 28, 2013


November 23, 2013


February 12, 2013
  • Welcome YoSniper to the Global Moderators

September 24, 2015

310
General Discussion / Re: TwitchTV is Down
« on: June 22, 2013, 11:53:02 AM »
Twitch Pls :FrankerZ:

311
General Discussion / TwitchTV is Down
« on: June 22, 2013, 12:48:23 AM »
 :BibleThump:

312
User-Made Creations / I Wanna Kill The Kamilia II - Extra Stage v0.93
« on: June 21, 2013, 08:35:26 PM »
Sometime today Kamilia posted pictures of the Kamilia II Extra Stage in the TwitchTV Skype Chat. I've done my best to string the rooms together and compile them. Please post suggestions, bugs or glitches as I will try my best to add/fix/remove them. WARNING: THE FOLLOWING EXE HAS BEEN RATED A LEVEL 98 FANGAME ON THE KOREAN FANGAME LIST, PLAY AT YOUR OWN RISK. YOU HAVE BEEN WARNED.

Changelog:

Version 0.91:
-----------------
[Change] Removed Unnessary Rooms
[Fix] Saves Are Now Visible In 3rd Screen

Version 0.92:
----------------
[Fix] Impossible Jump in the 1st Screen

Version 0.93:
----------------
[Add] 4th Room (Empty For Now)
[Fix] 1st Room symmetry fix
[Fix] Game should run smoother now

Download Link!

Have fun!  :BloodTrail:

313
Programming Questions / Re: I'm very stupid
« on: June 20, 2013, 06:45:35 PM »
Just use the roomChanger object and use this in the creation code:

Code: [Select]
roomTo = InsertRoomHere
image_yscale = 30 //(for entering or exiting rooms going left to right or right to left)
image_xscale = 30 //(for entering or exiting rooms going up to down or down to up)

314
Announcements / Renabled Karma Voting
« on: June 20, 2013, 04:17:07 PM »
This feature allows people to upvote and downvote people on how helpful they are on their posts. It was somehow disabled as new boards were being added, (I suspect ZeroG), anyway, enjoy the feature!  :4Head:

315
Announcements / Added TwitchTV Faces
« on: June 19, 2013, 06:23:05 PM »
I decided to go ahead and add some faces from TwitchTV. If you have any requests for TwitchTV faces for me to add just PM me.

Pages: 1 ... 11 12 13 14 15 16 17 18 19 20 [21] 22