MFGG phpBB Message Boards Archive
https://phpbb.mfgg.net/

Engine / Tutorial Topic
https://phpbb.mfgg.net/viewtopic.php?f=8&t=12077
Page 12 of 12

Author:  Q-Nova [ Fri Jul 15, 2016 2:39 am ]
Post subject:  Re: Engine / Tutorial Topic

Here is an example that I had made just recently:


Here is a screenshot of the Game Maker 8.1 version of the example:

Image

Author:  SMBXfan [ Fri Jul 15, 2016 3:49 pm ]
Post subject:  Re: Engine / Tutorial Topic

Group: Tutorials
Name: DirectEngine (Mario Physics)
Program(s): Game Maker 8 and Game Maker Studio
User: SMBXFan (that's me)
Registered: NO (I only have GM:Studio Standard and GM8 Lite)
Link: http://mfgg.net/index.php?act=resdb&par ... 4&id=32551

Author:  TrinitroMan [ Sat Jul 16, 2016 2:39 am ]
Post subject:  Re: Engine / Tutorial Topic

TrinitroMan wrote:
DarkBlueYoshi wrote:
ShadowBomb wrote:
Group: Engine
Name: SMB2 Engine
Registered: No
Function: Make a Super Mario Bros 2 US fangame
Target: Game Maker 8
Link: http://www.mediafire.com/?t4xub3ney23qqx6

NO

Uhm...sorry, but what's the problem with that engine?
I'm not that long in this place, so I have no idea, what problems this engine has.
Could someone please clear me up? Thanks in advance!

And I have STILL no idea what the problem is with that engine.
I would have tried it myself, if I could, but the link is down as well.
Somebody please tell me...

Author:  Gatete [ Sat Jul 16, 2016 3:32 am ]
Post subject:  Re: Engine / Tutorial Topic

Here's an update
  • Removed "spoiler" tags
  • Added a few more examples

Some of the submissions that was posted on this topic were not accepted due they were buggy.

Author:  DarkBlueYoshi [ Sat Jul 16, 2016 2:48 pm ]
Post subject:  Re: Engine / Tutorial Topic

TrinitroMan wrote:
DarkBlueYoshi wrote:
NO

Uhm...sorry, but what's the problem with that engine?
I'm not that long in this place, so I have no idea, what problems this engine has.
Could someone please clear me up? Thanks in advance!

And I have STILL no idea what the problem is with that engine.
I would have tried it myself, if I could, but the link is down as well.
Somebody please tell me...


Me neither. Maybe it was buggy.

Author:  Gatete [ Mon Aug 01, 2016 5:57 am ]
Post subject:  Re: Engine / Tutorial Topic

Syntax: [ Download ] [ Hide ]
Using gml Syntax Highlighting
///integer_to_roman(string);

/*
**  Usage:
**      integer_to_roman(string);
**
**  Argument:
**      string      String to convert
**
**  Returns:
**      The string converted into roman numerals.
*/


//Temporary string
var str = "";

//Given input
input = argument[0];

//First, let's check the input.
if ((input < 1) || (input > 3999)) { //If the number is lower than 1 or greater than 3999.

    exit;
}

//Otherwise, convert the input into roman numerals.
else {

    //1000 into "M".
    while (input >= 1000) { str += "M"; input -= 1000; }

    //900 into "CM".
    while (input >= 900) { str += "CM"; input -= 900; }

    //500 into "D".
    while (input >= 500) { str += "D"; input -= 500; }

    //400 into "CD".
    while (input >= 400) { str += "CD"; input -= 400; }

    //100 into "C".
    while (input >= 100) { str += "C"; input -= 100; }

    //90 into "XC".
    while (input >= 90) { str += "XC"; input -= 90; }

    //50 into "L".
    while (input >= 50) { str += "L"; input -= 50; }

    //40 into "XL".
    while (input >= 40) { str += "XL"; input -= 40; }
   
    //10 into "X".
    while (input >= 10) { str += "X"; input -= 10; }
   
    //9 into "IX".
    while (input >= 9) { str += "IX"; input -= 9; }
   
    //5 into "V".
    while (input >= 5) { str += "V"; input -= 5; }

    //4 into "IV".
    while (input >= 4) { str += "IV"; input -= 4; }
   
    //1 into "I".
    while (input >= 1) { str += "I"; input -= 1; }
}

//Return the obtained string
return str;


NOTE: This only works with a number between 1 and 3999, keep that in mind.

Author:  WreckingPrograms [ Wed Aug 24, 2016 5:31 pm ]
Post subject:  Re: Engine / Tutorial Topic

Group: Engine (Fangame sources)
Name: Mega Engine
Registered: Yes for GM 8.1, No for Studio
Function: Accurate and easy-to-use Mega Man engine
Target: Game Maker 8.1 and Studio
Link: viewtopic.php?f=8&t=19246

Author:  Gatete [ Thu Sep 01, 2016 3:56 pm ]
Post subject:  Re: Engine / Tutorial Topic

WreckingGoomba wrote:
Group: Engine (Fangame sources)
Name: Mega Engine
Registered: Yes for GM 8.1, No for Studio
Function: Accurate and easy-to-use Mega Man engine
Target: Game Maker 8.1 and Studio
Link: viewtopic.php?f=8&t=19246


Added, sorry for the late reply :S

Author:  Gatete [ Sat Sep 17, 2016 9:15 am ]
Post subject:  Re: Engine / Tutorial Topic

Updated a dead link on [ENGINES]

Author:  Q-Nova [ Thu Dec 22, 2016 4:48 pm ]
Post subject:  Re: Engine / Tutorial Topic

Here's an example I made today:

  • Name: Sound & Music Volume Adjuster
  • Program: Game Maker 8.1 & Game Maker: Studio
  • Registered: Not really sure
  • User: Q-Nova
  • Download Link: Here

Author:  Gatete [ Fri Dec 23, 2016 1:32 am ]
Post subject:  Re: Engine / Tutorial Topic

Q-Nova wrote:
Here's an example I made today:

  • Name: Sound & Music Volume Adjuster
  • Program: Game Maker 8.1 & Game Maker: Studio
  • Registered: Not really sure
  • User: Q-Nova
  • Download Link: Here


Added

Page 12 of 12 All times are UTC - 5 hours [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/