I got the idea from the SteamLauncher project and I thought: "Hey, I wanna try to make this"
So it's mostly done now, But I wanted to ask several questions.
• Was it dan200 who created 'Worm' in CC? (I have no clue)
•Would you like your game to automatically be installed on the first time this launches?(I mean it downloads it from pastebin and into the folder this program has) if you do then do this
Spoiler
1: Create a file that looks like this
{["credits"] = "<Name here>", ["price"] = <Numbers here>,}
That's the file that's going to be give the information on how much it costs, and who made it as you pretty much have figured out, If the price is nil it will be free in the store.Now upload that file to pastebin.
2: Upload your game to pastebin if you haven't already
3: Edit in some achievements in your game
Example:
if runFromHypeGames then -- This is a boolean value that does so this doesn't error if it isn't run from the launcher and therefore doesn't run any achievement code
local score = 100
if score >= 100 then
achievement.unlock("Scored 100",50) -- This will give the player 50 points when he have reached 100 score in the game
end
end
But be reasonable with the rewards and don't make them super high for something super easy!If you have additional files for your game add shell.path() when writing/reading from a file or making a directory etc.
local file = fs.open("SomeDirectory/SomeFile","w")
file.writeLine("2 = 1; 1 = 3; 3 = 1; -- :P/>")
file.close()
4: When you've done all steps above you should
Post this
Game: <Game Name>
Game ID: <Pastebin ID>
File Info: <Pastebin ID>
Rating: <What you think your game quality is out of 10>
Additional files: <Filename 1> <Pastebin ID1> <Filename 2> <Pastebin ID2> etc.
That's all!
I'll pretty much release the program when I've got more games to it ;)/>
- Hellkid98