Author Topic: How to actually START making a fangame?  (Read 1584 times)

Rad

  • Wannabe
  • Posts: 10
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 43.0.2357.130 Chrome 43.0.2357.130
    • View Profile
  • Playstyle: Keyboard
How to actually START making a fangame?
« on: June 29, 2015, 05:14:12 PM »
So I've been working on my game, and then all of the sudden realized I was doing all this work in the sample engine game...

How do I import all of this to a new gamemaker project? Simply dragging it all into the same folder doesn't work and dragging it to the right folder on the left side of Gamemaker is tedious and doesn't show sprites/objects, as well as doesn't keep them in their folders.

How do I transfer all of the files?

And for future reference, how do I only move the engine when I want to make another game?
Thanks :)

klazen108

  • Administrator
  • The Kid
  • Posts: 286
  • your a kid now your a squid now
  • OS:
  • Windows 8.1/Server 2013 Windows 8.1/Server 2013
  • Browser:
  • Chrome 43.0.2357.130 Chrome 43.0.2357.130
    • View Profile
    • Delicious-Fruit
  • Playstyle: Keyboard
Re: How to actually START making a fangame?
« Reply #1 on: June 29, 2015, 05:20:54 PM »
I can't speak for everyone, but typically when you make a fangame you'll take the engine and just add in all of your custom stuff. Just delete anything you don't need, or just don't use it, rooms & objects don't take up any space, it's just graphics/sounds you have to worry about!

This is actually one of the reasons Seph's engine is so clean. It has only the basic required sprites/sounds/objects and none of the frills, so it's perfect for experienced developers that only want the fangame physics prepared for them and want to develop all the content on their own.

infern0man1

  • ~(=^・ω・^)ψ
  • Global Moderator
  • Oatmeal Killer
  • Posts: 1.021
  • Dear sir stroke madam, fire exclamation point
  • OS:
  • Linux Linux
  • Browser:
  • Safari 4.0 Safari 4.0
    • View Profile
    • Twitter
  • Playstyle: Keyboard
Re: How to actually START making a fangame?
« Reply #2 on: June 29, 2015, 05:57:37 PM »
Right click the engine .gmk or .gm8 or w/e

'Copy'

Paste in new folder
:Kappa: b

Rad

  • Wannabe
  • Posts: 10
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 43.0.2357.130 Chrome 43.0.2357.130
    • View Profile
  • Playstyle: Keyboard
Re: How to actually START making a fangame?
« Reply #3 on: June 29, 2015, 09:15:17 PM »
can I just rename the game somehow? (without fucking up the gamemaker project?)

klazen108

  • Administrator
  • The Kid
  • Posts: 286
  • your a kid now your a squid now
  • OS:
  • Windows 8.1/Server 2013 Windows 8.1/Server 2013
  • Browser:
  • Chrome 43.0.2357.130 Chrome 43.0.2357.130
    • View Profile
    • Delicious-Fruit
  • Playstyle: Keyboard
Re: How to actually START making a fangame?
« Reply #4 on: June 29, 2015, 10:07:53 PM »
If you want to change the game name that appears in the title bar, you absolutely can. it depends on the engine though, which one are you using? look for a Script called "initGlobalOption" or "SetGlobalOption" and see if there's a spot for your game name, like this:


Or if your engine doesn't have that, maybe it's in the world object's Room Start event, like here:

(Note that this is the same engine as above, so it just uses global.Game_Title. You might see a string there instead that you can edit)

Hopefully that helps! If you let us know which engine you're using, I can find the exact spot that it's placed at.