Should I Just Stop?

  • No, Its Sexy And ILY

    Votes: 0 0.0%

  • Total voters
    11

Convict

Veteran
Messages
45
Reaction score
16
Points
568
This Menu Is Small, Its More Of A Menu For Trickshotters/ People Who Just Like Too Piss People Off
The Menu Is Nothing Like @dorathekiller97 , @Liam, @Extinct, @Sheperdebops Or Especially @CabCon 's Menus

This Menu Is Still In "Beta" If You Will So Dont Expect Alot.. Ill Add ALOT More Down The Road (This Is Like My 3rd Or So GSC Menu So Dont Go Easy On Me) Be Sure To Leave You Opinions And What I Can Improve/Add

Skype: pvckets

You do not have permission to view link Log in or register now.

You do not have permission to view link Log in or register now.

You do not have permission to view link Log in or register now.

You do not have permission to view link Log in or register now.


CabCon
StonedYoda
Extinct <-- Is Just A Fag Kappa
Liam
xTurntLobbies
You do not have permission to view link Log in or register now.

You do not have permission to view link Log in or register now.

All Of The CCM Community <3
 
Last edited:

The Dark Side

Former Staff Member
Messages
1,007
Reaction score
784
Points
993
Also, this isnt a preview if its a release silly :tonguewink:

EDIT: This gives me an awaiting challenge error, game doesn't start and it says "Awaiting Challenge" until it freezes. My guess is you did something wrong in the base.
 

Convict

Veteran
Messages
45
Reaction score
16
Points
568
Also, this isnt a preview if its a release silly :tonguewink:

EDIT: This gives me an awaiting challenge error, game doesn't start and it says "Awaiting Challenge" until it freezes. My guess is you did something wrong in the base.
Its like a P.T. And i think i might know whats wrong.. pm on skype or something
 

Sheperdebops

Code Junkie
Messages
78
Reaction score
73
Points
793
aww i got a tag too :grinning:. i started coding back in 2008 when JTAGS started i still have mine now haha.
 

Sheperdebops

Code Junkie
Messages
78
Reaction score
73
Points
793
what do you have in mind as the look? and im not good with gsc tbh, wanna teach me how to make a base lmk lmao
tbh there not as hard as you think all you need to make is a basic system that creates the menus for you depending on what you full them with for instance

PHP:
MenuSys(Menu, Num, Text, Func, Input1, Input2)
{
   level.MenuText[Menu][Num] = Text;
   level.MenuFunc[Menu][Num] = Func;
   if(isDefined(Input1)) level.MenuInput1[Menu][Num] = Input1;
   if(isDefined(Input2)) level.MenuInput2[Menu][Num] = Input2;
}

This is the Declares the Menu the text the functions and the input then to create something

PHP:
    MenuSys("Main", 0, "Main Menu");
    MenuSys("Main", 1, "Sub Menu 1");
    MenuSys("Main", 2, "Option 1");
    MenuSys("Main", 3, "Option 2");

its then just called like this, if you can understand that your at a huge advantage as it covers lots of things required in understanding GSC coding
 
Top