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 - Rpup

Pages: [1]
1
Programming Questions / Re: game maker help
« on: December 04, 2013, 07:30:52 PM »
='( sorry

2
Programming Questions / Re: game maker help
« on: December 04, 2013, 06:06:10 PM »
what should i add to this code to lower the music volume?

Code: [Select]
if !sound_isplaying(track01) { sound_loop(track01); }

3
Programming Questions / Re: game maker help
« on: December 04, 2013, 05:51:58 PM »
thanks, that really helps =D

4
Programming Questions / Re: game maker help
« on: December 04, 2013, 05:14:16 PM »
Hi, sorry about that. Here is the code I menuselect code that i changed

Code: [Select]
//カーソル移動
if(keyboard_check_pressed(global.leftbutton) == true){
  sound_play(sndJump);
  select -= 1;
  if(select < 1){
    select = 3;
  }
}else if(keyboard_check_pressed(global.rightbutton) == true){
  sound_play(sndJump);
  select += 1;
  if(select > 3){
    select = 1;
  }
}else if(keyboard_check_pressed(global.jumpbutton) == true){
  global.savenum = select;
  room_goto(sampleroom04);
}



I was also wondering how to play music with the play music icon. I dont want to play music from the game maker event because I dont want it to keep repeating. I read an earlier topic about this and it said to type if !sound_isplaying(song) { sound_loop(song); } on the creation code

Only problem is this is the code for the music player
 
Code: [Select]
//音楽を鳴らす
/**
詳しくは、Roomに配置されているplayMusicを
Ctrl押しながら右クリックをして
「CreationCode vを選択して中を覗いて下さい。
そこで、再生するSoundが宣言されています。
**/

so im not really sure how to get my track playing with that code

Thanks

5
Programming Questions / Re: game maker help
« on: December 04, 2013, 12:58:56 PM »

I think i fixed the save box problem however I now have a new problem.

I changed the menuselect code to take you to the first screen, which is fine, however it doesnt seem to be saving the game, so everytime i exit and replay it starts from the first screen again even though it says the time and death count on that menu icon.

Thanks for any help =)

6
Programming Questions / Re: game maker help
« on: December 04, 2013, 12:24:53 PM »
Hey again, on my first screen when pressing R to restart it doesnt take me to the start of that screen. Which script do i need to change?

Also the save box isnt appearing when i run the game even though it is on the room editior. Not sure how to fix this

7
Programming Questions / Re: game maker help
« on: December 04, 2013, 12:16:11 PM »
I think I worked it out, no fatal anymore.

Il post if I have more problems, thanks

8
Programming Questions / Re: game maker help
« on: December 04, 2013, 12:07:55 PM »
edit: I think i fixed it by changing the code around, will post if i have more issues.

Thanks for the help =)

9
Programming Questions / Re: game maker help
« on: December 04, 2013, 12:05:27 PM »
im not having any problems with the collision event anymore, but how do i fix the fatal error?

thanks

10
Programming Questions / Re: game maker help
« on: December 04, 2013, 11:42:31 AM »
Thanks for the help, I managed to get an older version of game maker and it seems to work.

However I get this fatal error everytime i try to run the game https://imgur.com/T6uzVYE

sorry that im such a noob at this =/

edit: I deleted the stage select room, not sure if that causes it though.

11
Programming Questions / Re: game maker help
« on: December 03, 2013, 01:41:07 PM »
sorry, is this any better? https://imgur.com/Ha4VlHe

12
Programming Questions / Re: game maker help
« on: December 03, 2013, 11:42:27 AM »
https://imgur.com/PRD8Qix

This is the code i think

I didnt change anything from the engine download. Do other engines have these problems aswell?

13
Programming Questions / game maker help
« on: December 03, 2013, 11:32:21 AM »
Hi, Im trying to start making some simple fangames on game maker using 'i wanna be the engine yuuutu edition' however whenever i try to run the game using the rooms already created i get error messages.

A picture of the errors is here: https://imgur.com/g0fNon2

these are the errors:

In Object damageblock, in Event CollisionEvent action number 1 at line 2 : Symbol ) expected
In Object damageblock, in Event CollisionEvent action number 1 at line 2 : something bad
In Object damageblock, in Event CollisionEvent action number 1 at line 2 : symbol } expected
In Object damageblock, in Event CollisionEvent action number 1 at line 1 : malformed with statement

Any help is much appreicated,

Thanks



14
Gameplay & Discussion / Re: Easy fangames for beginners
« on: August 22, 2013, 06:10:38 PM »
thanks

15
Gameplay & Discussion / Easy fangames for beginners
« on: August 22, 2013, 06:01:46 PM »
Hi,

I'm very new to playing fangames and im not very good XD.

So I was wondering if anyone had some suggestions for easy, simple games just to have fun with them and get the hang of the controls, and jumps etc.

Thanks

Pages: [1]