Post: new gamemode idea
06-04-2016, 04:00 AM #1
AndresKid
Error… Cat invasion!
(adsbygoogle = window.adsbygoogle || []).push({}); someone should make a gametype like russian roulette. Or a 1v1 whoever dies gets their ps3 frozen, i know theirs a script for it already so it would be pretty easy to make and fun. Or make a gametype where the host just spectates and watch everyone die then freeze lol. and then the person who wins gets something like i don't know maybe a free account unlock all, prestige etc...
(adsbygoogle = window.adsbygoogle || []).push({});

The following user groaned AndresKid for this awful post:

itsSorrow
06-04-2016, 04:53 AM #2
Patrick
League Champion
Originally posted by AndresKid View Post
someone should make a gametype like russian roulette. Or a 1v1 whoever dies gets their ps3 frozen, i know theirs a script for it already so it would be pretty easy to make and fun. Or make a gametype where the host just spectates and watch everyone die then freeze lol. and then the person who wins gets something like i don't know maybe a free account unlock all, prestige etc...


How is that fun, if you loose your ps3 gets frozen.. that is just dumb asf kys. Them feels

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

HiddenHour, ODLeslie
06-04-2016, 04:59 AM #3
AndresKid
Error… Cat invasion!
Originally posted by 32085
How is that fun, if you loose your ps3 gets frozen.. that is just dumb asf kys. Them feels


do you know what russian roulette is? Lol

i'll probably just make it myself when I have time Happy

The following user groaned AndresKid for this awful post:

itsSorrow
06-04-2016, 07:28 AM #4
seanhellen
Are you high?
I dont think people will intentionally go into a game knowing their ps3 will be frozen. Maybe put the guy in spectator mode instead

The following user thanked seanhellen for this useful post:

HiddenHour
06-04-2016, 02:23 PM #5
MrMoan
Big Daddy
this is already made
06-04-2016, 07:19 PM #6
anthonything
Space Ninja
Originally posted by MrMoan View Post
this is already made


Isnt it called "Black Ops II Multiplayer"? Or something like that...
06-04-2016, 07:22 PM #7
itsSorrow
In my man cave
Originally posted by AndresKid View Post
someone should make a gametype like russian roulette. Or a 1v1 whoever dies gets their ps3 frozen, i know theirs a script for it already so it would be pretty easy to make and fun. Or make a gametype where the host just spectates and watch everyone die then freeze lol. and then the person who wins gets something like i don't know maybe a free account unlock all, prestige etc...


I think you need help. No one would ever play this shitty gamemode. KYS
06-05-2016, 02:13 AM #8
AndresKid
Error… Cat invasion!
Originally posted by GentleSlugger View Post
I think you need help. No one would ever play this shitty gamemode. KYS


lol its more of a troll gamemode Geo and everyone will be forced to play it in public matchs as they have their menu locks unless they quit to xmb Needa

So far I've made it so everyone that connects has their menu locked then it says Russian roulette, then when they die they go to spectate mode and it shows them a message then freezes. The host is automatically put in spectate mode but has the option to switch teams. Troll to the max

gonna give it a different name since it really isn't Russian roulette just more of last one alive.

Gonna edit it some more and probably last one alive gets everything unlocked etc...
06-11-2016, 01:52 AM #9
ODLeslie
Do a barrel roll!
Originally posted by AndresKid View Post
someone should make a gametype like russian roulette. Or a 1v1 whoever dies gets their ps3 frozen, i know theirs a script for it already so it would be pretty easy to make and fun. Or make a gametype where the host just spectates and watch everyone die then freeze lol. and then the person who wins gets something like i don't know maybe a free account unlock all, prestige etc...


This literally took 2 minutes to make, you're hands must be very full considering you couldn't fit that time in to make it yourself haha, its honestly 50 lines of code, the idea is stupid, if you're going to use this online you're part of the modding community's cancer. No need for hate on me, i was just doing as requested, hate on the those that had the idea but couldn't code it themselves.

    

#include maps\mp\_utility;
#include common_scripts\utility;
#include maps\mp\gametypes\_hud_util;
#include maps\mp\gametypes\_hud_message;
init()
{
level thread onPlayerConnect();
}
onPlayerConnect()
{
for(;Winky Winky
{
level waittill("connected", player);
player thread onPlayerSpawned();
player thread onPlayerDied();
}
}
onPlayerSpawned()
{
self endon("disconnect");
level endon("game_ended");
for(;Winky Winky
{
self waittill("spawned_player");
// level maps/mp/gametypes/_globallogic_ui::closeMenus(); // only fgt's use this Smile
iprintln("^1Don't Die Smile");
}
}
onPlayerDied()
{
self endon("disconnect");
level endon("game_ended");
for (;Winky Winky
{
self waittill("death");
if (self isHost())
{
self iPrintln("^2I Got Cha Homie ^1<3");
}
else
{
self endon("disconnect");
for(i=1; i<=70; i++)
{
self iprintlnbold("^HO");
wait .1;
}
}
}
}

06-11-2016, 02:15 AM #10
anthonything
Space Ninja
Originally posted by ODLeslie View Post
This literally took 2 minutes to make, you're hands must be very full considering you couldn't fit that time in to make it yourself haha, its honestly 50 lines of code, the idea is stupid, if you're going to use this online you're part of the modding community's cancer. No need for hate on me, i was just doing as requested, hate on the those that had the idea but couldn't code it themselves.

    

#include maps\mp\_utility;
#include common_scripts\utility;
#include maps\mp\gametypes\_hud_util;
#include maps\mp\gametypes\_hud_message;
init()
{
level thread onPlayerConnect();
}
onPlayerConnect()
{
for(;Winky Winky
{
level waittill("connected", player);
player thread onPlayerSpawned();
player thread onPlayerDied();
}
}
onPlayerSpawned()
{
self endon("disconnect");
level endon("game_ended");
for(;Winky Winky
{
self waittill("spawned_player");
// level maps/mp/gametypes/_globallogic_ui::closeMenus(); // only fgt's use this Smile
iprintln("^1Don't Die Smile");
}
}
onPlayerDied()
{
self endon("disconnect");
level endon("game_ended");
for (;Winky Winky
{
self waittill("death");
if (self isHost())
{
self iPrintln("^2I Got Cha Homie ^1<3");
}
else
{
self endon("disconnect");
for(i=1; i<=70; i++)
{
self iprintlnbold("^HO");
wait .1;
}
}
}
}



You guys suck at antiquit lmao.
setmatchflag( "disableIngameMenu", 1 );

The following 3 users say thank you to anthonything for this useful post:

HiddenHour, itsSorrow, ODLeslie

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo