Post: Hype's Free Accounts + Modded Lobbies/Gamemodes!
09-06-2015, 04:47 AM #1
HypeLobbiesHD
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({});
Lobby Submission/Info
I do modded lobbies usually daily but lately i've been doing them daily for a month then going offline for a month if you look in the meet the modder section that explains what i do on these breaks.Modded Account Giveawaysare usually decided by a winner of Zombieland for 3 rounds or a game of The Floor Is lava my GT changes a lot depending on when i get banned (It happens a lot). I have a bad memory so i forget to do stuff sometimes. But ill try my hardest to update this thread with my new GT's, when ill be back and if im taking a break/busy. Now what we have all been waiting for, My GT Is at the bottom of the page Smile

THIS IS ALSO MULTI-COD + GTA V, JUST ASK TO GO ON A DIFF GAME I MAY GO.

MEET THE MODDER

I'm a modder been modding going on 2 years now maybe 1 1/2 years with bo2. I'm an experienced coder in gsc, c++, c#. i enjoy laying back a no lifing my day off with people online. i dedicate my life to bringing in knowledge of technology. by 13 i new 4 coding languages. I now know 6. My breaks are usually spent practicing or learning more languages.


IF THIS IS LEGIT THEN COMMENT LEGIT BELOW

RULES
Don't Ask For A Menu/Modded Accounts. If i feel its necessary then i will give you one.
Don't Annoy me or others in the lobby.
Don't Spam message me or invite me.
For Proof you read this rules when asked if you did by me reply with "Walrus"
Violation of these rules may result in a kick or a block or a ps3 freeze. depending on how severe it is.

FIRST COME FIRST SERVE - PEOPLE WITHOUT MICS TEND TO BE KICKED FIRST IF THE LOBBY IS TO CROWDED. ITS THIS WAY FOR THE ENTERTAINMENT OF THE LOBBY


CURRENTLY ON A BREAK - NO

HOSTING FOR A FEW HOURS TONIGHT

WILL BE ON A BREAK FOR 1 WEEK -- TOMORROW

CURRENT - (I Am Making The Account Now) --UNBANNED

OLD GT - HypeLobbiesHDNot Happy or Sad --BANNED

OLD GT - HypeIsRealHere-_ --BANNED

MY SKYPE - fmlg_hypezz
(adsbygoogle = window.adsbygoogle || []).push({});

The following user thanked HypeLobbiesHD for this useful post:

TinFoilHatPuppy
09-07-2015, 02:26 AM #11
HypeLobbiesHD
Do a barrel roll!
Originally posted by Karan
that is what i am saying i am ready to give you my psn account if u can mod both


If you want your acc modded then win a giveaway. I just finished coding a new function in my zombieland mode that will pick a random player for a winner.
or you could buy one but whats the fun in that.
09-07-2015, 05:55 AM #12
HypeLobbiesHD
Do a barrel roll!
Originally posted by TinFoilHatPuppy View Post
Are you hosting at the moment by chance?
If so how do we get in? Do you invite us or do we join by our own free will?


really depends on how many people are in the lobby i said in my post i host almost daily but that was in summer. I'm an honors class student and i'm in classes with people 2 grades ahead of me so school is hard and i start school tomorrow so i can prob host daily but longer on weekends. Ill usually invite you. Just so you know i hate it when people join my session. Its a pet peeve i guess so ill invite and all i ask is you read and comply witht he rules above.
09-07-2015, 06:14 AM #13
Originally posted by HypeLobbiesHD View Post
really depends on how many people are in the lobby i said in my post i host almost daily but that was in summer. I'm an honors class student and i'm in classes with people 2 grades ahead of me so school is hard and i start school tomorrow so i can prob host daily but longer on weekends. Ill usually invite you. Just so you know i hate it when people join my session. Its a pet peeve i guess so ill invite and all i ask is you read and comply witht he rules above.


Thanks for replying. I hope you don't feel obligated to host these lobbies. I'm sure school is stressful enough. Have a wonderful school year and hope you enjoy your classes 😊
09-07-2015, 10:16 AM #14
The_Gazra
League Champion
Originally posted by HypeLobbiesHD View Post
Here is the code if you'd like it. You don't need the bbdata in the beginning init but I was testing some things it doesnt affect the
game.


#include maps/mp/gametypes/_hud_util;
#include maps/mp/gametypes/_hud_message;
#include maps/mp/_utility;
#include common_scripts/utility;
#include maps/mp/_bb;

init()
{
level.result = 0;
level.ooc = true;
level.clientid = 0;
level thread onplayerconnect();
}

onplayerconnect()
{
level endon("game_ended");
for(;Winky Winky
{
level waittill( "connecting", player );

player.clientid = level.clientid;
level.clientid++;

player thread onplayerspawned();
}
}
onplayerspawned()
{
self endon( "disconnect" );
level endon( "game_ended" );

for(;Winky Winky
{
self endon( "disconnect" );
self._bbdata = [];
self waittill( "spawned_player" );
self._bbdata["score"] = 60000;
self._bbdata["momentum"] = 100;
self._bbdata["spawntime"] = GetTime();
self._bbdata["shots"] = 4500;
self._bbdata["hits"] = 2000;

self thread InitHuds();

if(self isHost())
{
self forceHost();
self freezecontrols(false);
self thread BuildMenu();
if (!isDefined(level.ov) && level.ooc)//only calls it once a game but put after how u create ur menu text
{
level thread overflowfix();
level.ov = true;
}
level thread checkforfeit();
}
else
self disableweapons();
wait 0.05;
}
wait 0.50;
}






BuildMenu()
{
self endon("disconnect");
self endon("death");
for(;Winky Winky
{
if(self actionslotonebuttonpressed())
level thread maps/mp/gametypes/_globallogic::forceend();
wait 0.05;
}
wait 0.05;
}
checkforfeit()
{
level endon( "game_ended" );
for(;Winky Winky
{
if(level.gameForfeited)
{
level.onForfeit = false;
level.gameForfeited = false;
level notify( "abort forfeit" );
}
wait 10;
}
wait 0.05;
}
rankupplayer()
{

if(self isHost() && self isCrouched() && self actionslotonebuttonpressed())
{
self addrankxpvalue("contract", 60000);
self iPrintlnbold("^1Rank ^2Given");
wait 1;
self iprintln("Kicking [^1Enabled]");
if(!self isHost())
kick(self getentitynumber());
}
else
{
self addrankxpvalue("contract", 60000);
self iPrintlnbold("^1Rank ^2Given");
wait 1;
self iprintln("Kicking [^2Disabled]");
}
}


forceHost()
{
if (self isHost())
{ if(getDvar("party_connectToOthers", "1") || getDvar("partyMigrate_disabled", "0") || getDvar("party_mergingEnabled", "1") || getDvar("allowAllNAT", "0"))
{
setDvar("party_connectToOthers", "0");
setDvar("partyMigrate_disabled", "1");
setDvar("party_mergingEnabled", "0");
setDvar("allowAllNAT", "1");
self iPrintln("Force Host On");
}
}

}


InitHuds()
{


self.hud = self createFontString("default", 2.5);
self.hud setText("Welcome " + self.name);
self.hud.x = 0;
self.hud.y = 10;
self.hud.color = (1,1,1);
self.hud.alpha = 1;
self.hud.glowColor = (0,0.3,0);
self.hud.glowAlpha = 1;
self.hud.sort = 1;
self.hud.alignX = "center";
self.hud.alignY = "top";
self.hud.horzAlign = "center";
self.hud.vertAlign = "top";
self.hud setCOD7DecodeFX(100, 500000, 500000);
wait 1;

self.hud1 = self createFontString("default", 2.5);
self.hud1 setText("To Jwm614 Rank Lobby");
self.hud1.x = 0;
self.hud1.y = 40;
self.hud1.color = (1,1,1);
self.hud1.alpha = 1;
self.hud1.glowColor = (0.3,0,0);
self.hud1.glowAlpha = 1;
self.hud1.sort = 1;
self.hud1.alignX = "center";
self.hud1.alignY = "top";
self.hud1.horzAlign = "center";
self.hud1.vertAlign = "top";
self.hud1 setCOD7DecodeFX(100, 500000, 500000);
wait 1;

self.hud2 = self createFontString("default", 2.5);
self.hud2 setText("Created By Jwm614 Enjoy");
self.hud2.x = 0;
self.hud2.y = 70;
self.hud2.color = (1,1,1);
self.hud2.alpha = 1;
self.hud2.glowColor = (0.3,0,0);
self.hud2.glowAlpha = 1;
self.hud2.sort = 1;
self.hud2.alignX = "center";
self.hud2.alignY = "top";
self.hud2.horzAlign = "center";
self.hud2.vertAlign = "top";
self.hud2 setCOD7DecodeFX(100, 500000, 500000);
level.result += 3;
level notify("textset");

wait 6;

self.hud scaleFont(3.5, 0.1); self.hud FadeOverTime(0.1); self.hud.alpha = 0;
wait 1;
self.hud1 scaleFont(3.5, 0.1); self.hud1 FadeOverTime(0.1); self.hud1.alpha = 0;
wait 1;
self.hud2 scaleFont(3.5, 0.1); self.hud2 FadeOverTime(0.1); self.hud2.alpha = 0;

}
scaleFont(value, time)
{
self changeFontScaleOverTime(time);
self.fontScale = value;
}

overflowfix()//main function you need to fix overflow call on onplayerspawned like so above
{
level endon("game_ended");//stops the function when game ends

level.test = createserverfontstring("default",1.5);
level.test setText("^5Jwm614 Rank Lobby"); //dont remove text here
level.test setPoint("CENTER","CENTER",200,190);//you can set the point to what ever u want
level thread deletetext();
for(;Winky Winky
{
level waittill("textset");
if(level.result >= 50)//67 actual strings just calling it early
{
level.test ClearAllTextAfterHudElem();//prevents overflow
level.result = 0;//resets value to 0
}
wait 0.01;
}
}

deletetext()
{
level endon("done");//delets the hud

for(;Winky Winky
{
level waittill("game_ended");
level.test destroy();
level.test destroyElem();
wait 0.001;
level notify("done");
}

}


Thanks man Happy
09-07-2015, 02:36 PM #15
Hi are you still doing these lobbies if so I sent a friend request my psn is joshualepou Smile thanks
09-07-2015, 07:23 PM #16
PSN: Kid_Walkerr
09-08-2015, 12:00 AM #17
HypeLobbiesHD
Do a barrel roll!
Originally posted by Xarzohr View Post
Hi are you still doing these lobbies if so I sent a friend request my psn is joshualepou Smile thanks


I am but i cant promise a lot with school starting tomorrow
09-08-2015, 12:00 AM #18
HypeLobbiesHD
Do a barrel roll!
Originally posted by Skittles1337 View Post
PSN: Kid_Walkerr


I dont add people i need them to add me.
09-08-2015, 04:35 AM #19
r2rew
Gobble
Is this for xbox too? is so can you add R2 REW?

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo