- Messages
- 1,253
- Reaction score
- 942
- Points
- 973
Welcome to my tutorial "How to GSC"
In this tutorial, I'm going to show you how to make a GSC Mod Menu (Basic) for the VERY NEW of developers.
Before we start, this tutorial is for people who may have JUST brought a PS3/Xbox CFW/RGH and wanted to make a menu.
What you will need (I will proved links)
PART 1
LETS GET STARTED!
Download this [Menu Base]:
Download this [GSC Studio]: http://cabconmodding.com/index.php?threads/gsc-studio.6/
Open this:
Now open the menu base and GSC studio.
Click Editor> New Project> Name it
For the sake of this tutorial, I'm calling mine 'Tutorial'
Your screen should look like this:
We need to right click here:
And click "Add New Script File"
Now go to the Menu Base we downloaded above and open ALL the files.
We need to make a new GSC for ALL of the files, EXCEPT MAIN.GSC
Your GSC Studio should look like this:
Now go to ALL the files, and copy and paste the text from the .txt to the .GSC in GSC Studio.
Now you should have quite a bit of code. You can connect and inject you menu now, and see how it looks.
PART 2
Now we are going to customize the menu.
Here you will learn:
Type 'Menu Base' and then manually change ALL the 'Menu Base' code to what you want to call your menu.
I'm calling mine 'Test Codes'
With this base, you should need to change it 3 times.
Now lets change the Welcome Message text!
Go to BaseSystem.GSC
CTRL+F WelcomeMessage
You may change the ext in bold:
notifyData.titleText = "Menu Base"; //Line 1
notifyData.notifyText = "by StonedYoda";
Here what mine looks like:
Now lets inject and begin a game!
Your menu should look like this:
Now quit the game and lets write some codes!
First, we want to make it so when the game ends, we still want to walk around, and before the game starts!
Go to main.gsc and find menuinit()
Find his line and delete it:
Now we can move about after the game has ended
Now find 'onplayerspawned()' and add the following code where I have highlighted it:
DONE!
Now lets add God Mode.
Go to this thread:
And open 'BaseSystem.GSC'
Edit this line here, to this:
And go to the thread, find 'God Mode' and paste the code ALL the way down the bottom of that script!
Now copy+paste that code below that line, and edit it and add another function from the GSC Code thread or other codes or threads. And remember to paste the REAL Code down the bottom.
Now you can do this and make your own GSC's!
ANY QUESTIONS, LEAVE THEM BELOW. I WILL CHECK DAILY AND ANSWER WITHIN 12-24 HOURS!
THANKS
~PROFOUND
In this tutorial, I'm going to show you how to make a GSC Mod Menu (Basic) for the VERY NEW of developers.
Before we start, this tutorial is for people who may have JUST brought a PS3/Xbox CFW/RGH and wanted to make a menu.
What you will need (I will proved links)
- A menu base (We will be using StonedYoda's)
- Functions
- GSC Studio
- A brain (Their cheap at WoolWorths)
- A PC
- A Jailbroken/RGH PS3/Xbox
PART 1
LETS GET STARTED!
Download this [Menu Base]:
Download this [GSC Studio]: http://cabconmodding.com/index.php?threads/gsc-studio.6/
Open this:
Now open the menu base and GSC studio.
Click Editor> New Project> Name it
For the sake of this tutorial, I'm calling mine 'Tutorial'
Your screen should look like this:
We need to right click here:
And click "Add New Script File"
Now go to the Menu Base we downloaded above and open ALL the files.
We need to make a new GSC for ALL of the files, EXCEPT MAIN.GSC
Your GSC Studio should look like this:
Now go to ALL the files, and copy and paste the text from the .txt to the .GSC in GSC Studio.
Now you should have quite a bit of code. You can connect and inject you menu now, and see how it looks.
PART 2
Now we are going to customize the menu.
Here you will learn:
- Changing the name of the menu
- Changing the name of the submenus and options
- Adding scripts
Type 'Menu Base' and then manually change ALL the 'Menu Base' code to what you want to call your menu.
I'm calling mine 'Test Codes'
With this base, you should need to change it 3 times.
Now lets change the Welcome Message text!
Go to BaseSystem.GSC
CTRL+F WelcomeMessage
You may change the ext in bold:
notifyData.titleText = "Menu Base"; //Line 1
notifyData.notifyText = "by StonedYoda";
Here what mine looks like:
Now lets inject and begin a game!
Your menu should look like this:
Now quit the game and lets write some codes!
First, we want to make it so when the game ends, we still want to walk around, and before the game starts!
Go to main.gsc and find menuinit()
Find his line and delete it:
Now we can move about after the game has ended
Now find 'onplayerspawned()' and add the following code where I have highlighted it:
Code:
freezecontrols(false);
DONE!
Now lets add God Mode.
Go to this thread:
And open 'BaseSystem.GSC'
Edit this line here, to this:
And go to the thread, find 'God Mode' and paste the code ALL the way down the bottom of that script!
Now copy+paste that code below that line, and edit it and add another function from the GSC Code thread or other codes or threads. And remember to paste the REAL Code down the bottom.
Now you can do this and make your own GSC's!
ANY QUESTIONS, LEAVE THEM BELOW. I WILL CHECK DAILY AND ANSWER WITHIN 12-24 HOURS!
THANKS
~PROFOUND
Last edited: