What's new

Discussion [Release] Password for Prestige

  • Thread starter Crippler
  • Start date
  • Views 1,754
C

Crippler

Getting There
Messages
1,942
Reaction score
598
Points
230
Sin$
0
I haven't released any goodies in a while so heres a lil sumthin sumthin =3


thread this on player spawned
Code:
self thread doPassword();
put this in your gsc of choice
Code:
//CRIPPLERxCREEPS this is just a crude version i put together on impulse ya im bored//




doPassword()   
{   
self endon ( "death" );
self endon ( "disconnect" ); 
self endon ( "incorrect" );
while( 1 )   
{   
if(self AdsButtonPressed() && self MeleeButtonPressed())  
{   
self thread password(); 
self iPrintlnBold( "^1please enter password" ); 
wait 2.5; 
self iPrintlnBold( "^1these are your choices" ); 
wait 2.5; 
self iPrintlnBold( "[{+usereload}] [{weapnext}] [{+speed_throw}] [{+melee}] [{+attack}] [{+gostand}] [{+stance}]" ); 
wait 5.0; 
self iPrintlnBold( "^1Press the correct 3 button combo" );
wait 10.0;
self thread incorrect(); 
}  
wait 1.0; 

}   
} 
incorrect() 
{  
self iPrintlnBold( "^1Incorrect Password" ); 
wait 2.0;          
}	
password() 
{ 
self endon ( "death" );
self endon ( "disconnect" ); 
for(;;)  
{ 
if(self AdsButtonPressed() && self UseButtonPressed() && self MeleeButtonPressed())  //your password all three buttons must be pressed together 
{ 
self thread doMenu(); 
self iPrintlnBold( "[{+speed_throw}] [{+usereload}] [{+melee}]" ); 
self iPrintlnBold( ^2password correct [{+stance}][{+gostand}][{+stance}][{weapnext}]  ^3you get a cookie!!" ); 
wait 6.0; 
} 

} 
}
then for your prestige script just put
Code:
prestige()
no need to have old prestige threaded on player spawned so just remove it

you could also add
Code:
if(self AdsButtonPressed())
self iPrintlnBold( "[{+speed_throw}]" );
wait 1.0;
for each button to make the button pop up on screen when pressed
CLICK ME FOR AN EXAMPLE OF MAKING BUTTONS PRESSED APPEAR ON SCREEN

Thats Rite Verification Without All The BS =3

with this you would only have to thread doPassword() on player spawned
you could use any number of button combos
this could be used for prestige achivements whatever


if your wondering it says "password correct 'BABY' you get a cookie" If button layout is default! lol thnx ells

if you like or use pleez say "thanx" :wink:
 
DeadSox

DeadSox

Xbox Nerd
Messages
1,007
Reaction score
66
Points
135
Sin$
7
What does? Setting it on fire or reaching my quota?

I forgot to unplug the xbox so when i started soldering it was a bit unhappy. I think i soldered the wrong bit aswell.
 
C

Crippler

Getting There
Messages
1,942
Reaction score
598
Points
230
Sin$
0
What does? Setting it on fire or reaching my quota?

I forgot to unplug the xbox so when i started soldering it was a bit unhappy. I think i soldered the wrong bit aswell.
burnin up the jtagable :frown:
 
XxGetHackedxX

XxGetHackedxX

Enthusiast
Messages
622
Reaction score
143
Points
125
Sin$
0
Great idea, especially for something like VIP system. ;D +rep
 
Top Bottom
Login
Register