UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - djobdam

There are two more bugs that I found: one is when finishing the easter you lose quick revive while downed in co-op
The second bug is that you lose your third weapon while you are downed and revived in co-op
8 years ago
one question, if u want to get the raygun without pressing a trigger what kind of code do I need?

Double Post Merge: September 06, 2014, 07:39:40 pm
I've got this script

Code Snippet
Plaintext
//Secret_Easter_Egg
Secret_trigger_1()
{
   trig1 = getEnt("secret_trigger","targetname");
   trig1 waittill("trigger", player );
   trig1 delete();
   trig1 SetCursorHint( "HINT_NOICON" );
   
self.secret_trigger_num = self.secret_trigger_num + 1;

thread secret_weapon();
}

secret_trigger_2()
{
   trig2 = getEnt("secret_trigger2","targetname");
   trig2 waittill("trigger", player );
   trig2 delete();
   trig2 SetCursorHint( "HINT_NOICON" );

self.secret_trigger_num = self.secret_trigger_num + 1;

thread secret_weapon();
}

secret_trigger_3()
{
   trig3 = getEnt("secret_trigger3","targetname");
   trig3 waittill("trigger", player );
   trig3 delete();
   trig3 SetCursorHint( "HINT_NOICON" );

self.secret_trigger_num = self.secret_trigger_num + 1;

secret_weapon()
{
door = getEnt("secret_door","targetname");
if(self.secret_trigger_num == 2)
{
door movez(-500, 25);
wait 8;
door delete();
}
}

and instead of a door that opens I want to get a gun, how do I do that?
10 years ago
Loading ...