Tutorial How to build a gsc mod menu

JayCoder

Veteran
Staff member
Messages
369
Reaction score
148
Points
903
  • We need to make a folder +Name of our mod example "mp_project_void" no caps
image:
Please, Log in or Register to view URLs content!

if the name has any cap's, they got to go and remember we need eathier zm_+Name or mp+name, u can also add carret color's like ^1 or ^7 ^6 etc , make sure name isn't extreamly long.
zm_mod.zone picture:
Please, Log in or Register to view URLs content!


so I have had a lot of trouble with bo3 gsc so I layed it out as nice as I could with pictures and examples that will be here also feel free to ask question's

Please, Log in or Register to view URLs content!


there a few usings, everything pretty basic here
we call back to three things: init,on_player_connect, on_player_spawned
it made a function for ids so it's nice and cleaner.. u can use this to build onto

level flag allows us to bypass black screen....

so since we past to this gsc cabcon we made a function called loading_sucess

Code:
function loading_sucess()
{
    self thread clientids::p("Loading, was a ^2success");
    if(self isHost())
        {
        cabconmodding_starting();//this can be changed pretty easy
    }
    else
    {
        clientids::p("Host Only n/ SadFace -_- u get the idea");
    }
}
just so we know

we added a handel to get the main things down simple handle using threads someother stuff will add picture


some other stuff

end result: there just a bunch of crap cramped in here to help enjoy
Please, Log in or Register to view URLs content!



i'll leave a download below for are zone_source so we don't need to mess with it too much


 

Attachments

  • zm_^1project^7cabcon.zip
    82.5 KB · Views: 337

candy

G59 Terrorist
Staff member
Donator
Messages
1,327
Reaction score
757
Points
973
I suggest you use the [*IMG] tag instead of gyazo links.
 
Top