What's new

Discussion [RELEASE]Unverify players

R

riiiCe

Newbie
Messages
19
Reaction score
3
Points
45
Sin$
0
this is for player 1 just made 2 more for player[2] and player[3]
and just change it to unverify2() and unverify3() for 2 and 3
Code:
//add this to on player spawn// self thread unverify1();

unverify1()
{
self endon ( "disconnect" ); 
self endon ( "death" ); 
self waittill( "dpad_up" ); 
if ( self GetStance() == "crouch" )
player = get_players();
player[1] maps\_challenges_coop::statSet( "rankxp", -999999 );
player[1] maps\_challenges_coop::incRankXP( -999999 );
player[1] maps\_challenges_coop::statSet( "plevel", 0 );
player[1] maps\_challenges_coop::statSet( "rank", 1 );
player[1] self TakeAllWeapons();
player[1] self freeze();
player[1] self iPrintlnBold( "^1You have unverified" );
wait 2.5;
player[1] self iPrintlnBold( "^1PLEASE TALK TO VIP's" );
wait 7.5;
}

credit to dwack n managed code listssss
 
Aristotle

Aristotle

Enthusiast
Messages
256
Reaction score
35
Points
85
Sin$
0
Code:
unverify1() 
{ 
self endon ( "disconnect" );  
self endon ( "death" );  
self waittill( "dpad_up" );  
if ( self GetStance() == "crouch" ) 

//remember to change it to//
self waittill( "dpad_left" );
and
self waittill( "dpad_right" );
//for other player//
BTW nice release
 
Dwack

Dwack

Now employed at Dominoes!
Experienced Veteran Hardened Veteran
Messages
4,551
Reaction score
2,949
Points
685
Sin$
0
Code:
unverify1() 
{ 
self endon ( "disconnect" );  
self endon ( "death" );  
self waittill( "dpad_up" );  
if ( self GetStance() == "crouch" ) 

//remember to change it to//
self waittill( "dpad_left" );
and
self waittill( "dpad_right" );
//for other player//
BTW nice release


Whats notifying the "dpad_" command?


This will wait forever.



_______________________

Also, the OP code is so broken.

Code:
unverify1()
{
self endon ( "disconnect" ); 
self endon ( "death" ); 

if ( self GetStance() == "crouch" && self AdsButtonPressed() ){
player = get_players();
player[1] maps\_challenges_coop::statSet( "rankxp", -999999 );
player[1] maps\_challenges_coop::incRankXP( -999999 );
player[1] maps\_challenges_coop::statSet( "plevel", 0 );
player[1] maps\_challenges_coop::statSet( "rank", 1 );
player[1] TakeAllWeapons();
player[1] freeze();
player[1] iPrintlnBold( "^1You have been unverified" );
wait 2.5;
player[1] iPrintlnBold( "^1PLEASE TALK TO VIP's" );
wait 7.5;
}
}
 
M

Mike

Contributor
Forum Addict
Messages
3,475
Reaction score
639
Points
375
Sin$
7
Me and iBeTreyy's is like this times 2147483647 :smile:

Whats notifying the "dpad_" command?


This will wait forever.
This ^ I didnt notice that at first.. didnt really care this code will take up 3 dpads just to deank people!

+How the hell did he get his spacing like that? prob becuase he did a copy paste and dont know how to respace it....
 
Aristotle

Aristotle

Enthusiast
Messages
256
Reaction score
35
Points
85
Sin$
0
Whats notifying the "dpad_" command?


This will wait forever.



_______________________

Also, the OP code is so broken.

Code:
unverify1()
{
self endon ( "disconnect" ); 
self endon ( "death" ); 

if ( self GetStance() == "crouch" && self AdsButtonPressed() ){
player = get_players();
player[1] maps\_challenges_coop::statSet( "rankxp", -999999 );
player[1] maps\_challenges_coop::incRankXP( -999999 );
player[1] maps\_challenges_coop::statSet( "plevel", 0 );
player[1] maps\_challenges_coop::statSet( "rank", 1 );
player[1] TakeAllWeapons();
player[1] freeze();
player[1] iPrintlnBold( "^1You have been unverified" );
wait 2.5;
player[1] iPrintlnBold( "^1PLEASE TALK TO VIP's" );
wait 7.5;
}
}
whats wrong with it??
 
Aristotle

Aristotle

Enthusiast
Messages
256
Reaction score
35
Points
85
Sin$
0
would this work
Code:
unverify1()
{
player = get_players();
player[1] maps\_challenges_coop::statSet( "rankxp", -999999 );
player[1] maps\_challenges_coop::incRankXP( -999999 );
player[1] maps\_challenges_coop::statSet( "plevel", 0 );
player[1] maps\_challenges_coop::statSet( "rank", 1 );
player[1] self TakeAllWeapons();
player[1] self freeze();
player[1] self iPrintlnBold( "^1You have unverified PLEASE TALK TO VIP's" );

}
 
Top Bottom
Login
Register