D3D Base problem!

Posts 1620 of 20 · Page 2 of 2
Quote Originally Posted by Victoria View Post
It's not an D3D base.
The D3D base should look like this:
Code:
		sFPS[20]="xxx fps";
int		CH_cheats	  = 1;
int		CH_weap	   = 1;

int		Onehitkill	= 0;
int		No-reload   = 1; 


// none standard options
char *sStamina[] = { "Off","Stealth","Full" };

void RebuildMenu(void)
{
  strcpy(Mtitle,"== D3Dmenu by Victoria ==");
  MenuAddItem("[cheats]", Moptfolder, &CH_cheats, 2, MENUFOLDER);
  if (CH_cheats) {
	  MenuAddItem("Stamina"	 , sStamina  , &CH_stamina   , 3, MENUITEM);
	  MenuAddItem("Fast ammo"   , Moptonoff , &CH_fastammo  , 2, MENUITEM);
	  MenuAddItem("Fast health" , Moptonoff , &CH_fasthealth, 2, MENUITEM);
	  MenuAddItem("Fast repair" , Moptonoff , &CH_fastrepair, 2, MENUITEM);
	  MenuAddItem("Fast flag"   , Moptonoff , &CH_fastflag  , 2, MENUITEM);
  }
  MenuAddItem("[Weapons]", Moptfolder, &CH_weap, 2, MENUFOLDER);
  if (CH_weap) {
	  MenuAddItem("No spread"	 , Moptonoff , &CH_nospread, 2, MENUITEM);
	  MenuAddItem("No recoil"	 , Moptonoff , &CH_norecoil, 2, MENUITEM);
	  MenuAddItem("Unlimited ammo", Moptonoff , &CH_unlammo , 2, MENUITEM);
  }
  MenuAddItem("Framerate"		, (char **)sFPS , 0,0,MENUTEXT);
It's a bit diffrent, because changed the source.
I gonna make soon a tested and working menu base.
The Source, is for warrock, but you can change the name's and functions.
just throwing this out there...that menu isnt that good lol
Quote Originally Posted by Swiftdude View Post


just throwing this out there...that menu isnt that good lol
At least it's something. It's a good starter menu which the OP probably needs. You can always make your own
If you want something done right, you gotta do it yourself
Quote Originally Posted by shamwow100 View Post
At least it's something. It's a good starter menu which the OP probably needs. You can always make your own
If you want something done right, you gotta do it yourself
he got it from a base thats 2 years old posted on this site in like 100s of places XD
Quote Originally Posted by Swiftdude View Post


he got it from a base thats 2 years old posted on this site in like 100s of places XD
Lol well to tell you the truth, I based my first menu off of Han's menu xD but yeah it is everywhere
I just realized what your probably is! make sure is a dynamic link library, not a console app
Posts 1620 of 20 · Page 2 of 2

Post a Reply

Tags for this Thread

None

Need help?