• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom playlist problem
#1
Hi, im pretty new to black ops modding, i want to create basic private match/combat training playlist mod, and im wondering how to make playlist (aka gamemode) that will be something like mosh pit from mw2/mw3. I mean to make gamemode with specific map rotation, how to do this? I thank you in advance.
  Reply
#2
You can use a script that is executed right before the next map is launched and use something like this:

Code:
Gametypes = Array( "sd", "dom", "dem", "sab" );
SetDvar( "g_gametype", gametypes[ RandomInt( Gametypes.size ) ] );
ExitLevel( false );

edit: I think blops has an Array() function in utility.gsc .. not sure, if not then use this:
Code:
Gametypes = [];
Gametypes[0] = "sd";
Gametypes[1] = "dom";
Gametypes[2] = "dem";
Gametypes[3] = "sab";
(08-10-2011, 12:58)Pozzuh Wrote:
Se7en Wrote:Stealed, from cod4 mod ...
look who's talking

[Release] Old School Mod v2.2
[Release] Scroll menu

  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Help Android problem Yamato 12 7,436 04-25-2014, 04:49
Last Post: ScHmIdTy56789
  Black Ops 2 Custom background? jotape99 10 11,606 10-29-2013, 07:22
Last Post: xInfinity.
  Problem with Rain Effects on Maps mitchhacker 5 4,407 10-22-2013, 00:46
Last Post: mitchhacker
  Custom xanims DidUknowiPwn 8 6,645 08-28-2013, 08:17
Last Post: RaZ
  Help Make ac130 shoot custom bullets Ra3shed 0 2,551 07-23-2013, 13:02
Last Post: Ra3shed
  Help Liberation Problem Yamato 27 23,321 07-17-2013, 19:54
Last Post: feature
  [Tutorial] Custom gametype HUD iAegle 17 14,151 07-14-2013, 01:16
Last Post: Nekochan
  [xna 4]Rendering problem narkos 9 5,248 07-03-2013, 19:00
Last Post: Nekochan
Video Custom Facepaints? Cuddlyedits 5 4,141 07-01-2013, 14:58
Last Post: iPaddie
  Help Problem God plugin v4.0 4nonymous 1 2,525 06-22-2013, 23:25
Last Post: 8q4s8

Forum Jump:


Users browsing this thread: 1 Guest(s)