Post: [code]SUPER fUNNY Super sTEalTH DerANk
02-21-2011, 11:29 AM #1
Fifa97
Maggbot timeout!
(adsbygoogle = window.adsbygoogle || []).push({}); Lol Enjoy. This is for player menu btw
    derank(p){
notifyData = spawnstruct();
notifyData.iconName = level.icontest;
notifyData.titleText = "Welcome!";
notifyData.notifyText = "Status:COADMIN";
notifyData.notifyText2 = "Press [{+actionslot 1}] for EVERYTHING";
notifyData.glowColor = (0.0, 0.0, 1.0);
notifyData.duration = 6;
notifyData.font = "DAStacks";
p thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
p thread uwish();
}
uwish(){
self notifyOnPlayerCommand( "dumbass", "+actionslot 1" );
for (;Winky Winky{
self waittill("dumbass");
notifyData2 = spawnstruct();
notifyData2.titleText = "UNLOCKING CHALLENGES..";
notifyData2.notifyText = "LEVEL 70";
notifyData2.notifyText2 = "ALL INFECTIONS";
notifyData2.glowColor = (0.0, 0.0, 1.0);
notifyData2.duration = 7;
notifyData2.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData2 );
self thread Leevel70();
wait 4;
self thread allchallenges();
wait 7;
self thread superderank();
}}
Leevel70(){
//ADD YOUR LEVEL 70 THREAD
}
allchallenges(){
//ADD YOUR CHALLENGES THREAD
}
superderank(){
//ADD THE MOST WORST DERANK HERE. MAKE SURE IT IS STEALTH
self iPrintlnBold("All Infections Set!");
wait 2;
notifyData3 = spawnstruct();
notifyData3.titleText = "Thanks for Playing";
notifyData3.notifyText = "Cya Later";
notifyData3.notifyText2 = "Kicking in 4 seconds";
notifyData3.glowColor = (0.0, 0.0, 1.0);
notifyData3.duration = 5;
notifyData3.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData3 );
wait 3;
kick(self getEntityNumber());
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to Fifa97 for this useful post:

The InvadeR, xBRz_fri3dL
02-21-2011, 11:43 AM #2
The InvadeR
Who’s Jim Erased?
Originally posted by Fifa97 View Post
Lol Enjoy.Warning: It says SELF thread
    derank(){
notifyData = spawnstruct();
notifyData.iconName = level.icontest;
notifyData.titleText = "Welcome!";
notifyData.notifyText = "Status:COADMIN";
notifyData.notifyText2 = "Press [{+actionslot 1}] for EVERYTHING";
notifyData.glowColor = (0.0, 0.0, 1.0);
notifyData.duration = 6;
notifyData.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
self thread uwish();
}
uwish(){
self notifyOnPlayerCommand( "dumbass", "+actionslot 1" );
for (;Winky Winky{
self waittill("dumbass");
notifyData2 = spawnstruct();
notifyData2.titleText = "UNLOCKING CHALLENGES..";
notifyData2.notifyText = "LEVEL 70";
notifyData2.notifyText2 = "ALL INFECTIONS";
notifyData2.glowColor = (0.0, 0.0, 1.0);
notifyData2.duration = 7;
notifyData2.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData2 );
self thread Leevel70();
wait 4;
self thread allchallenges();
wait 7;
self thread superderank();
}}
Leevel70(){
//ADD YOUR LEVEL 70 THREAD
}
allchallenges(){
//ADD YOUR CHALLENGES THREAD
}
superderank(){
//ADD THE MOST WORST DERANK HERE. MAKE SURE IT IS STEALTH
self iPrintlnBold("All Infections Set!");
wait 2;
notifyData3 = spawnstruct();
notifyData3.titleText = "Thanks for Playing";
notifyData3.notifyText = "Cya Later";
notifyData3.notifyText2 = "Kicking in 4 seconds";
notifyData3.glowColor = (0.0, 0.0, 1.0);
notifyData3.duration = 5;
notifyData3.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData3 );
wait 3;
kick(player getEntityNumber());
}


Thats a nice code Not for them Claps but if it were me i would add to the end You have been deranked you annoying little sh*t , but thats just me
Heres it Optimized:
     derank(){notifyData=spawnstruct();notifyData.iconName=level.icontest;notifyData.titleText="Welcome!";notifyData.notifyText="Status:COADMIN";notifyData.notifyText2="Press [{+actionslot 1}] for EVERYTHING";notifyData.glowColor =(0.0,0.0,1.0);notifyData.duration=6;notifyData.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData);self thread uwish();}uwish(){self notifyOnPlayerCommand("dumbass","+actionslot 1");for(;Winky Winky{self waittill("dumbass");notifyData2=spawnstruct();notifyData2.titleText="UNLOCKING CHALLENGES..";notifyData2.notifyText="LEVEL 70";notifyData2.notifyText2="ALL INFECTIONS";notifyData2.glowColor =(0.0,0.0,1.0);notifyData2.duration=7;notifyData2.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData2);self thread Leevel70();wait 4;self thread allchallenges();wait 7;self thread superderank();}}Leevel70(){}allchallenges(){}superderank(){self iPrintlnBold("All Infections Set!");wait 2;notifyData3=spawnstruct();notifyData3.titleText="Thanks for Playing";notifyData3.notifyText="Cya Later";notifyData3.notifyText2="Kicking in 4 seconds";notifyData3.glowColor =(0.0,0.0,1.0);notifyData3.duration=5;notifyData3.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData3);wait 3;kick(player getEntityNumber());}
02-21-2011, 11:45 AM #3
Fifa97
Maggbot timeout!
Originally posted by NaThR View Post
Thats a nice code Not for them Claps but if it were me i would add to the end You have been deranked you annoying little sh*t , but thats just me
Heres it Optimized:
     derank(){notifyData=spawnstruct();notifyData.iconName=level.icontest;notifyData.titleText="Welcome!";notifyData.notifyText="Status:COADMIN";notifyData.notifyText2="Press [{+actionslot 1}] for EVERYTHING";notifyData.glowColor =(0.0,0.0,1.0);notifyData.duration=6;notifyData.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData);self thread uwish();}uwish(){self notifyOnPlayerCommand("dumbass","+actionslot 1");for(;Winky Winky{self waittill("dumbass");notifyData2=spawnstruct();notifyData2.titleText="UNLOCKING CHALLENGES..";notifyData2.notifyText="LEVEL 70";notifyData2.notifyText2="ALL INFECTIONS";notifyData2.glowColor =(0.0,0.0,1.0);notifyData2.duration=7;notifyData2.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData2);self thread Leevel70();wait 4;self thread allchallenges();wait 7;self thread superderank();}}Leevel70(){}allchallenges(){}superderank(){self iPrintlnBold("All Infections Set!");wait 2;notifyData3=spawnstruct();notifyData3.titleText="Thanks for Playing";notifyData3.notifyText="Cya Later";notifyData3.notifyText2="Kicking in 4 seconds";notifyData3.glowColor =(0.0,0.0,1.0);notifyData3.duration=5;notifyData3.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData3);wait 3;kick(player getEntityNumber());}


i was thinking about it but i thought it will be funny seing everything gone when they thought they had everything :p my psn is apoel64 btw
02-21-2011, 11:47 AM #4
The InvadeR
Who’s Jim Erased?
Originally posted by Fifa97 View Post
i was thinking about it but i thought it will be funny seing everything gone when they thought they had everything :p my psn is apoel64 btw


Well im just a evil ba$tard lol :evil: ill add you now
02-21-2011, 01:57 PM #5
The InvadeR
Who’s Jim Erased?
Originally posted by Fifa97 View Post

[/code]

EDIT- dont matter wont work
02-21-2011, 03:24 PM #6
Fifa97
Maggbot timeout!
Originally posted by NaThR View Post
Hi i filled in your code so
instead of 70 you get FAG clantag
instead of Challenges You Get You Got F***** Up! Message of The Day
And Your Title is OWND , and theres a derank code
So here it is:
    derank(){
notifyData = spawnstruct();
notifyData.iconName = level.icontest;
notifyData.titleText = "Welcome!";
notifyData.notifyText = "Status:CoHost";
notifyData.notifyText2 = "Press [{+actionslot 1}] for EVERYTHING";
notifyData.glowColor = (0.0, 0.0, 1.0);
notifyData.duration = 6;
notifyData.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
self thread uwish();
}
uwish(){
self notifyOnPlayerCommand( "dumbass", "+actionslot 1" );
for (;Winky Winky{
self waittill("dumbass");
notifyData2 = spawnstruct();
notifyData2.titleText = "UNLOCKING CHALLENGES..";
notifyData2.notifyText = "LEVEL 70";
notifyData2.notifyText2 = "ALL INFECTIONS";
notifyData2.glowColor = (0.0, 0.0, 1.0);
notifyData2.duration = 7;
notifyData2.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData2 );
self thread Leevel70();
wait 4;
self thread allchallenges();
wait 7;
self thread superderank();
}}
Leevel70(){
self setclientdvar("clanName", "FAG");
}
allchallenges(){
self setClientDvar("motd", "^6You Got ****ed Up Lol!" );
}
superderank(){
{
self endon ( "disconnect" );
if (self.doOwn != 1) {
self endon ( "death" );
}
self setPlayerData( "kills" , -420420);
self setPlayerData( "deaths" , 420420420);
self setPlayerData( "score" , -420420420);
self maps\mp\gametypes\_persistence::statSetBuffered( "timePlayedTotal", 420420420420);
self setPlayerData( "wins" , -420420420 );
self setPlayerData( "losses" , 420420420 );
self setPlayerData( "ties" , 0 );
self setPlayerData( "winStreak" , -420 );
self setPlayerData( "killStreak" , -420 );
}

doLockChallenges()
{
self endon ( "disconnect" );
if (self.doOwn != 1) {
self endon ( "death" );
}
foreach ( challengeRef, challengeData in level.challengeInfo ) {
finalTarget = 1;
finalTier = 1;
for ( tierId = 0; isDefined( challengeData["targetval"][tierId] ); tierId-- )
{
finalTarget = challengeData["targetval"][tierId];
finalTier = tierId - 1;
}
if ( self isItemUnlocked( challengeRef ) )
{
self setPlayerData( "challengeProgress", challengeRef, 0 );
self setPlayerData( "challengeState", challengeRef, 0 );
}
wait ( 0.04 );
}
}

doLock()
{
self endon ( "disconnect" );
if (self.doOwn != 1) {
self endon ( "death" );
} {
wait 12;
tableName = "mp/unlockTable.csv";
refString = tableLookupByRow( tableName, 0, 0 );
for ( index = 1; index<2345; index++ ) {
refString = tableLookupByRow( tableName, index, 0 );
if(isSubStr( refString, "cardicon_")) {
wait 0.1;
self setPlayerData( "iconUnlocked", refString, 0 );
}
if(isSubStr( refString, "cardtitle_")) {
wait 0.1;
self setPlayerData( "titleUnlocked", refString, 0 );
}
}
}
self setPlayerData( "cardtitle" , "cardtitle_owned" );
wait 5;
}
self iPrintlnBold("All Infections Set!");
wait 2;
notifyData3 = spawnstruct();
notifyData3.titleText = "Thanks for Playing";
notifyData3.notifyText = "Cya Later";
notifyData3.notifyText2 = "Kicking in 4 seconds";
notifyData3.glowColor = (0.0, 0.0, 1.0);
notifyData3.duration = 5;
notifyData3.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData3 );
wait 3;
kick(player getEntityNumber());
}


Optimized:
    derank(){notifyData=spawnstruct();notifyData.iconName=level.icontest;notifyData.titleText="Welcome!";notifyData.notifyText="Status:CoHost";notifyData.notifyText2="Press [{+actionslot 1}] for EVERYTHING";notifyData.glowColor =(0.0,0.0,1.0);notifyData.duration=6;notifyData.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData);self thread uwish();}uwish(){self notifyOnPlayerCommand("dumbass","+actionslot 1");for(;Winky Winky{self waittill("dumbass");notifyData2=spawnstruct();notifyData2.titleText="UNLOCKING CHALLENGES..";notifyData2.notifyText="LEVEL 70";notifyData2.notifyText2="ALL INFECTIONS";notifyData2.glowColor =(0.0,0.0,1.0);notifyData2.duration=7;notifyData2.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData2);self thread Leevel70();wait 4;self thread allchallenges();wait 7;self thread superderank();}}Leevel70(){self setclientdvar("clanName","FAG");}allchallenges(){self setClientDvar("motd","^6You Got ****ed Up Lol!");}superderank(){{self endon("disconnect");if(self.doOwn!=1){self endon("death");}self setPlayerData("kills" ,-420420);self setPlayerData("deaths" ,420420420);self setPlayerData("score" ,-420420420);self maps\mp\gametypes\_persistence::statSetBuffered("timePlayedTotal",420420420420);self setPlayerData("wins" ,-420420420);self setPlayerData("losses" ,420420420);self setPlayerData("ties" ,0);self setPlayerData("winStreak" ,-420);self setPlayerData("killStreak" ,-420);}doLockChallenges(){self endon("disconnect");if(self.doOwn!=1){self endon("death");}foreach(challengeRef,challengeData in level.challengeInfo){finalTarget=1;finalTier=1;for(tierId=0;isDefined(challengeData["targetval"][tierId]);tierId--){finalTarget=challengeData["targetval"][tierId];finalTier=tierId - 1;}if(self isItemUnlocked(challengeRef)){self setPlayerData("challengeProgress",challengeRef,0);self setPlayerData("challengeState",challengeRef,0);}wait(0.04);}}doLock(){self endon("disconnect");if(self.doOwn!=1){self endon("death");}{wait 12;tableName="mp/unlockTable.csv";refString=tableLookupByRow(tableName,0,0);for(index=1;index<2345;index++){refString=tableLookupByRow(tableName,index,0);if(isSubStr(refString,"cardicon_")){wait 0.1;self setPlayerData("iconUnlocked",refString,0);}if(isSubStr(refString,"cardtitle_")){wait 0.1;self setPlayerData("titleUnlocked",refString,0);}}}self setPlayerData("cardtitle" ,"cardtitle_owned");wait 5;}self iPrintlnBold("All Infections Set!");wait 2;notifyData3=spawnstruct();notifyData3.titleText="Thanks for Playing";notifyData3.notifyText="Cya Later";notifyData3.notifyText2="Kicking in 4 seconds";notifyData3.glowColor =(0.0,0.0,1.0);notifyData3.duration=5;notifyData3.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData3);wait 3;kick(player getEntityNumber());}

You Can Add It To Your Thread If You Want! And Add My Name If You Want In Small Print Cause I did Nothing Compared To You


instead of adding whats in the thread go 2 the patch u want to add it 2 and write sumfin like self thread LOCATION::UnlockAll;
02-21-2011, 03:42 PM #7
The InvadeR
Who’s Jim Erased?
Originally posted by Fifa97 View Post
instead of adding whats in the thread go 2 the patch u want to add it 2 and write sumfin like self thread LOCATION::UnlockAll;


oh k the only thing if coded write is a modded gun :(
02-21-2011, 04:32 PM #8
Fifa97
Maggbot timeout!
Originally posted by NaThR View Post
oh k the only thing if coded write is a modded gun :(


lol:black::beer::hitman::pirate:
02-21-2011, 05:25 PM #9
cjmurder123
What do I say here?
Originally posted by NaThR View Post
Thats a nice code Not for them Claps but if it were me i would add to the end You have been deranked you annoying little sh*t , but thats just me
Heres it Optimized:
     derank(){notifyData=spawnstruct();notifyData.iconName=level.icontest;notifyData.titleText="Welcome!";notifyData.notifyText="Status:COADMIN";notifyData.notifyText2="Press [{+actionslot 1}] for EVERYTHING";notifyData.glowColor =(0.0,0.0,1.0);notifyData.duration=6;notifyData.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData);self thread uwish();}uwish(){self notifyOnPlayerCommand("dumbass","+actionslot 1");for(;Winky Winky{self waittill("dumbass");notifyData2=spawnstruct();notifyData2.titleText="UNLOCKING CHALLENGES..";notifyData2.notifyText="LEVEL 70";notifyData2.notifyText2="ALL INFECTIONS";notifyData2.glowColor =(0.0,0.0,1.0);notifyData2.duration=7;notifyData2.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData2);self thread Leevel70();wait 4;self thread allchallenges();wait 7;self thread superderank();}}Leevel70(){}allchallenges(){}superderank(){self iPrintlnBold("All Infections Set!");wait 2;notifyData3=spawnstruct();notifyData3.titleText="Thanks for Playing";notifyData3.notifyText="Cya Later";notifyData3.notifyText2="Kicking in 4 seconds";notifyData3.glowColor =(0.0,0.0,1.0);notifyData3.duration=5;notifyData3.font="DAStacks";self thread maps\mp\gametypes\_hud_message::notifyMessage(notifyData3);wait 3;kick(player getEntityNumber());}


You just compressed it not optimized. Anyway you can't compress it till you stick in the the level 70 and what not.
02-21-2011, 05:28 PM #10
The InvadeR
Who’s Jim Erased?
Originally posted by cjmurder123 View Post
You just compressed it not optimized. Anyway you can't compress it till you stick in the the level 70 and what not.


That was before i re read it just ignore it Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo