Post: "Please Await Verification" Code (1.11)
06-30-2012, 12:20 PM #1
JokerRey
League Champion
(adsbygoogle = window.adsbygoogle || []).push({}); Whasssap Ngu?

This Freeze's All Unverified Players And Gives A Message Saying "Please Await Verification"
Once Verified , Just Open The Menu And You're Good To Go Smile

It took me 5 minutes to put this together but decided to release Smile

*I Know This Isnt The Best, But It Does The Job =D*


Add This To Your Verified Script:
    self notify ( "Verified" );


    waitforvip()
{ self endon("disconnect");
self endon("Verified");
self freezeControlsWrapper( true );
self VisionSetNakedForPlayer("blacktest");
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Please ^2Await ^3Verification");
}


Need Anymore Help, Just Pm Me!

Hope You Enjoy Smile
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users say thank you to JokerRey for this useful post:

iHmPanda, jeffmysterio619, Kitty=^.^=, Hitful, TehBinds

The following 2 users groaned at JokerRey for this awful post:

Cmd-X, ThePhantom410.
07-03-2012, 01:53 AM #11
Thanks thats pretty cool
07-03-2012, 02:06 AM #12
Restxrt Modz
Do a barrel roll!
you dont need to put under self waittill("dpadleft"); a notify("dpadleft");, and btw if the player is freeze, he cant be in prone Winky Winky
07-03-2012, 02:45 AM #13
Originally posted by Restxrt
you dont need to put under self waittill("dpadleft"); a notify("dpadleft");, and btw if the player is freeze, he cant be in prone Winky Winky

It doesnt freeze you its just a black screen until password is done it in my v2. Thanks JokerRey and LightModz for the codes
07-06-2012, 10:18 AM #14
YooYoOoN
Do a barrel roll!
Reminds me of the old days. when people actually made the patches themselves. now 3/4 of the people i know use the stupid RDC patches which are All leeched
07-06-2012, 11:35 AM #15
JokerRey
League Champion
Originally posted by YooYoOoN View Post
Reminds me of the old days. when people actually made the patches themselves. now 3/4 of the people i know use the stupid RDC patches which are All leeched


lol I Know What Yah Mean Mate ! :lol:

EliteMossy Had Something similar to this in his v1, v2 & v3 :p

I Really Liked It And Decided It Would Be Cool To Take That Idea And Put It In Newer Patches Happy

The following user thanked JokerRey for this useful post:

YooYoOoN
07-06-2012, 11:47 AM #16
YooYoOoN
Do a barrel roll!
Originally posted by JokerRey View Post
lol I Know What Yah Mean Mate ! :lol:

EliteMossy Had Something similar to this in his v1, v2 & v3 :p

I Really Liked It And Decided It Would Be Cool To Take That Idea And Put It In Newer Patches Happy


i'm now adding this to my patch :carling:
07-06-2012, 11:52 AM #17
JokerRey
League Champion
Originally posted by YooYoOoN View Post
i'm now adding this to my patch :carling:


lol, Enjoy Man Happy
07-06-2012, 04:26 PM #18
Originally posted by JokerRey View Post
Whasssap Ngu?

This Freeze's All Unverified Players And Gives A Message Saying "Please Await Verification"
Once Verified , Just Open The Menu And You're Good To Go Smile

It took me 5 minutes to put this together but decided to release Smile

*I Know This Isnt The Best, But It Does The Job =D*


Place This: OnPlayerSpawned.
    
self thread maps\mp\killstreaks\flyableheli::waitforvip();


Place This In Your Flyableheli Gsc.
    waitforvip()
{ self endon("disconnect");
self endon("Verified");
self freezeControlsWrapper( true );
self VisionSetNakedForPlayer("blacktest");
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Please ^2Await ^3Verification");
}


*Note*

If You Dont Have maps/mp/killstreaks/flyableheli.gsc Then Just Place The Code In Another Gsc. But You Must Change The "self thread maps\mp\killstreaks\flyableheli::waitforvip();" To The Corresponding One. For Example. If I Put The Code In maps/mp/killstreaks/JokerReysBlackrainEditxD.gsc I Would Have To Change The OnPlayerSpawned Code To "self thread maps\mp\killstreaks\JokerReysBlackrainEditxSad Awesome:waitforvip();"


Need Anymore Help, Just Pm Me!

Hope You Enjoy Smile



You should of coded it like this


    
waitforvip()
{ self endon("disconnect");
self endon("Verified");
self freezeControlsWrapper( true );
self VisionSetNakedForPlayer("blacktest");
self thread sayVerify();
wait 3;
self thread doGod(); //So they won't die alot :p
}

sayVerify()
{
self endon("disconnect");
self endon("death");
self sayall("I need verification");
wait 15;
self sayall("I need verification");
wait 15;
}
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}

07-06-2012, 04:38 PM #19
JokerRey
League Champion
Originally posted by The
You should of coded it like this


    
waitforvip()
{ self endon("disconnect");
self endon("Verified");
self freezeControlsWrapper( true );
self VisionSetNakedForPlayer("blacktest");
self thread sayVerify();
wait 3;
self thread doGod(); //So they won't die alot :p
}

sayVerify()
{
self endon("disconnect");
self endon("death");
self sayall("I need verification");
wait 15;
self sayall("I need verification");
wait 15;
}
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}



Shit , Thats Good Mate :p

That Looks Like Mossy's Code Tho? :L

---------- Post added at 11:38 AM ---------- Previous post was at 11:36 AM ----------

Originally posted by The
You should of coded it like this


    
waitforvip()
{ self endon("disconnect");
self endon("Verified");
self freezeControlsWrapper( true );
self VisionSetNakedForPlayer("blacktest");
self thread sayVerify();
wait 3;
self thread doGod(); //So they won't die alot :p
}

sayVerify()
{
self endon("disconnect");
self endon("death");
self sayall("I need verification");
wait 15;
self sayall("I need verification");
wait 15;
}
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}



And One More Problem..

The Code I Made.. When Verified You Will Still Get The Please Await Verification.. Its Just You Will Have A Menu..

So Your Code Won't Work.. Because A Player Will Be Verified.. But They Will Be Still Asking For Verification Mate :(

So It Cant Be Used ! lol

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo