Skip to main content

Place Files Inside EXE and Execute them using Gamemaker

I am fond of creating games in Gamemaker and Mugen. However I found an interesting way to create executable files that may contain anything inside them (may be a whole cracked Program) and may act as extractors or copy protectors

Tools required

  •  GameMaker 7 or above

Procedure


 1) Download and Install Gamemaker and start a Game Project by going to File -> New.

 2) Every game consists of a Room in which all objects shall act and interact with each other.So Create a new room by either clicking on the icon on Standard toolbar or by going to Resources Menu -> Create Room.Name it anything you want.In my case ROOM0

 3)Every Game consists of Objects which are responsible for all interactions. So create a new object by either clicking on the icon on Standard toolbar or by going to Resources Menu -> Create Object.Name it anything you want.In my case VIRUS

 4)Now create a new script (Press CTRL+ALT+C or Resources Menu -> Create Script),Name it SCRIPT0 and type there

{
 execute_program("Here you can give path where the program or file shall be extracted if it is to be executed",0,0)
 }


 5) Open properties of Virus object and add an Event. An Event is the Triggering data or action that leads to some action or a series of actions. Add a CREATE event to object VIRUS.

 6) Select Control from Tabs on right hand side and select Execute Script Action. It Applies to Object itself ie VIRUS and select SCRIPT0.You can give further arguments if you wish. Press OK

 7)Add any other actions if You Wish..like in my case I selected End Game Action from Main2 tab.

 8)Now from Side Panel select Global game Settings and select Include Tab. Add any files to be included in EXE and select options which suit you regarding Exporting of Files .

 9)Create Executable and Distribute it to your friends..


 The GameMaker Supports GML or Game Maker language, a fairly good language which supports Direct X and some advanced Coding Functions. However File Handling and Other Functions are limited...its still a good thing to try for newbie programmers and those who want to get a feel of coding.


 Some of Cracks and keygens I have recently seen are too made in this program,because the EXE can forge many things underneath it.

Comments

Popular posts from this blog

How to Hack a Twitter Account

Twitter is one of the topmost widely running social networking sites,Its alexa ranking is 14(As per now).So therefore it is largely becoming target of hackers,Many requests keep coming to me ,please tell us a way to Hack twitter accounts or How to hack twitter accounts,so therefore i today i have written a post on How to hack twitter accounts Well for this purpose i will tell you the most used method to hack twitter accounts i.e phishing How to hack twitter accounts - Phishing First of all download:   Twitter fake login page ( Latest Version ) Click Here To Download : NOTE : You will be asked to enter a password while extracting the Documents. Please Insert the password as : IHA Step 1 First extract the contents into a folder Step 2 Then edit login.php .(right click and then select edit) In that ,find (CTRL+F) ‘http://rafayhackingarticles.blogspot.com’ then change it to your destined URL but don’t forget ‘'. Now rename the script to pass....

Basic Introduction To SQL Injection

SQl injection is a vulnerability that allows an attacker to influence the queries that are passed to the back-end database.It has been present since the time databases have been attached to the web applications.However, the main credit of bringing SQL injection into public notice goes to Rain Forest Puppy who in 1998 wrote an article on it and in 2000 he wrote another article describing how he hacked one of the popular website on the internet using SQL injection. Before understanding the how SQL injection attacks we need to understand the Simple Three Tier Architectureor a Four Tier Architecture.This will clear your basics and give you a rough idea of how database-driven web applications work. Three Tier Architecture In a simple three tier datbase-driven architecture the three layers that are used are:- Presentation Tier(Browsers) Logic Tier Storage Tier(Database) The three tier architecture follows a linear relationship i.e Presentation Tier connects to the Logic Tier and...