You are viewing our Forum Archives. To view or take place in current topics click here.
#471. Posted:
GoldenWarrior
  • TTG Senior
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
This is not a coding question but a model question.. I understand if you guys cant answer it, but here we go.

Here the question what is the this model show in this picture? The map is Der Riese by the way.

Picture

[ Register or Signin to view external links. ]

- I know its a barrel but what is the correct name for that barrel...

Thanks for you time
-GoldenWarrior
#472. Posted:
tommoearth1998
  • Ladder Climber
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 335
Reputation Power: 13
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 335
Reputation Power: 13
does any one know how to delete text ive try destroy
but it dident work
#473. Posted:
xSonic
  • TTG Senior
Status: Offline
Joined: Oct 11, 201014Year Member
Posts: 1,789
Reputation Power: 88
Status: Offline
Joined: Oct 11, 201014Year Member
Posts: 1,789
Reputation Power: 88
tommoearth1998 wrote does any one know how to delete text ive try destroy
but it dident work


Because your supposed to use Destroy();
#474. Posted:
OriginallyMark
  • TTG Senior
Status: Offline
Joined: May 07, 201113Year Member
Posts: 1,501
Reputation Power: 81
Status: Offline
Joined: May 07, 201113Year Member
Posts: 1,501
Reputation Power: 81
coolbunny1234 wrote
TTGxMIGHTY_MEALES wrote Hey does anyone know how to make a menu that only host can see ?


Just self thread the menu to yourself specifically

aka getplayer[0] thread blah

Hey could you go in to any more detail, this is the first time doing a host SubMenu
#475. Posted:
OriginallyMark
  • TTG Senior
Status: Offline
Joined: May 07, 201113Year Member
Posts: 1,501
Reputation Power: 81
Status: Offline
Joined: May 07, 201113Year Member
Posts: 1,501
Reputation Power: 81
TTGxMIGHTY_MEALES wrote
coolbunny1234 wrote
TTGxMIGHTY_MEALES wrote Hey does anyone know how to make a menu that only host can see ?


Just self thread the menu to yourself specifically

aka getplayer[0] thread blah

Hey could you go in to any more detail, this is the first time doing a host SubMenu

Please someone help !
It's all i need !!!
#476. Posted:
-Hermione-
  • TTG Fanatic
Status: Offline
Joined: May 07, 201113Year Member
Posts: 4,298
Reputation Power: 12
Status: Offline
Joined: May 07, 201113Year Member
Posts: 4,298
Reputation Power: 12
What do I need to add to this to make it give me a ray gun from it.

Vendorz()
{
   self iPrintln("^2Shiz Spawned");
   Hermione = spawn( "script_model", (206.991, -349.767, -2.87467) ); Hermione setModel( "zombie_vending_jugg_on" ); Hermione.angles = (0,270,0);
}
#477. Posted:
STaRzZ_HDI
  • TTG Addict
Status: Offline
Joined: Feb 14, 201113Year Member
Posts: 2,913
Reputation Power: 150
Status: Offline
Joined: Feb 14, 201113Year Member
Posts: 2,913
Reputation Power: 150
they should include you in the post hermione your a good coder too
#478. Posted:
--OuTlaW--
  • TTG Master
Status: Offline
Joined: Feb 07, 201113Year Member
Posts: 872
Reputation Power: 37
Status: Offline
Joined: Feb 07, 201113Year Member
Posts: 872
Reputation Power: 37
-Hermione- wrote What do I need to add to this to make it give me a ray gun from it.

Vendorz()
{
   self iPrintln("^2Shiz Spawned");
   Hermione = spawn( "script_model", (206.991, -349.767, -2.87467) ); Hermione setModel( "zombie_vending_jugg_on" ); Hermione.angles = (0,270,0);
}


I think this will work

doDoubleTap()
{
   level thread add_zombie_hint( "DubTap", "Press & Hold &&1 To Buy Ray Gun [Cost: 500]" );
   trig = spawn("trigger_radius", (206.991, -349.767, -2.87467), 0, 270, 0 );
   trig SetCursorHint( "HINT_NOICON" );
   trig UseTriggerRequireLookAt();
   trig set_hint_string( trig, "DubTap" );
   for(;;)
   {
      trig waittill("trigger", i);
      if(i UseButtonPressed() && i.dub_bought == false )
      {
         cost = 500;
         if( i.score >= cost )
         {
            i.dub_bought = true;
            i playsound( "cha_ching" );
            i.zombie_cost = 500;
            i.score -= 500;
            i giveWeapon( "ray_gun_upgraded" );
            i switchToWeapon( "ray_gun_upgraded" );
            i playsound( "laugh_child" );
            wait 1;
         }
         else
         {
            i playsound( "deny" );
            i iPrintlnBold("^1ERROR: ^7Not Enough Points!");
            wait 1;
         }
      }
      if(i UseButtonPressed() && i.dub_bought == true )
      {
         i playsound( "deny" );
         i iPrintlnBold("^1ERROR: ^7Equipment Already Bought!");
         wait 1;
      }
   }
}
#479. Posted:
-Yes-
  • TTG Senior
Status: Offline
Joined: Sep 01, 201014Year Member
Posts: 1,337
Reputation Power: 53
Status: Offline
Joined: Sep 01, 201014Year Member
Posts: 1,337
Reputation Power: 53
iRaaTeD- wrote Remember guys keep the stuff realistic. We will help best we can.


I need help with an Unkown Function error im getting. I've combed through my whole patch for 4+ hours and can't find it. I've linked everything together and all that crap. Is there a way to find it easier? Thanks
#480. Posted:
--OuTlaW--
  • TTG Master
Status: Offline
Joined: Feb 07, 201113Year Member
Posts: 872
Reputation Power: 37
Status: Offline
Joined: Feb 07, 201113Year Member
Posts: 872
Reputation Power: 37
-Yes- wrote
iRaaTeD- wrote Remember guys keep the stuff realistic. We will help best we can.


I need help with an Unkown Function error im getting. I've combed through my whole patch for 4+ hours and can't find it. I've linked everything together and all that crap. Is there a way to find it easier? Thanks


Have u waw pc?
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.