UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Mapname.gsc freaking out if I put anything into it

broken avatar :(
Created 12 years ago
by SoulTaker
0 Members and 1 Guest are viewing this topic.
3,137 views
broken avatar :(
×
broken avatar :(
Location: usCalifornia
Date Registered: 28 July 2013
Last active: 6 years ago
Posts
702
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
Personal Quote
Pizza that is all.
Signature
There's no better feeling in the world than a warm pizza box on your lap.
×
SoulTaker's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
SoulTaker's Contact & Social Links
So I'm trying to add wind and Phils Typewritter into the map but every time I do the map will not run. I ran as developer 1 and it always says that the problem is bad syntax "{"  as well as telling me the line number in which is the line that starts the function.  I'm at a loss here. In older maps I did this never happened.
Last Edit: August 09, 2014, 12:46:04 am by ValenciaRicardo1
This topic contains a post which is marked as the Best Answer. Click here to view it.
broken avatar :(
×
broken avatar :(
Former UGX Lead Asset Creator
Location: ca
Date Registered: 17 August 2012
Last active: 7 years ago
Posts
1,932
Respect
Forum Rank
Zombie Destroyer
Primary Group
UGX V.I.P.
My Groups
More
My Contact & Social Links
More
Personal Quote
Eh?
Signature

(Click to enter portfolio)
×
SajeOne's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
UGX V.I.P.
UGX V.I.P.
Can you make one of these edits and post it? It's likely either the code you pasted in doesn't have a correct amount of braces or you are putting the code in a spot which then gives the code an incorrect amount of braces.
broken avatar :(
×
broken avatar :(
Location: usCalifornia
Date Registered: 28 July 2013
Last active: 6 years ago
Posts
702
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
Personal Quote
Pizza that is all.
×
SoulTaker's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
SoulTaker's Contact & Social Links
Code Snippet
Plaintext
// Typewriter style intro text - YaPh1l
phil_typewriter_intro()
{
    text = [];
    text[text.size] = "Somewhere in Germany";
    text[text.size] = "Near Phil's House";
    text[text.size] = "28th of June 2042, 18:32";
   
    intro_hud = [];
    for(i = 0;  i < text.size; i++)
    {
        intro_hud[i] = create_simple_hud();
        intro_hud[i].alignX = "left";
        intro_hud[i].alignY = "bottom";
        intro_hud[i].horzAlign = "left";
        intro_hud[i].vertAlign = "bottom";
        intro_hud[i].foreground = true;
        intro_hud[i].sort = 100;

        if ( level.splitscreen && !level.hidef )
        {
            intro_hud[i].fontScale = 2.75;
        }
        else
        {
            intro_hud[i].fontScale = 1.75;
        }
        intro_hud[i].alpha = 1;
        intro_hud[i].color = (1, 1, 1);
        intro_hud[i].y = -110 + 20 * i;
    }

    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i].label = "";
        for(k = 0; k <= text[i].size; k++)
        {
            intro_hud[i].label = GetSubStr(text[i], 0, k);
            PlaySoundAtPosition("typewriter", (0, 0, 0));
            wait(0.1);
        }
        wait(1.5);
    }
    wait(1.5);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] FadeOverTime( 3.5 );
        intro_hud[i].alpha = 0;
        wait(1.5);
    }   
    wait(2);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] destroy_hud();
    }
}

And this is my map name gsc.

Code Snippet
Plaintext
/*
Der Frost / Nazi Zombie Sniperbolt Tutorial Version 2.0
Scripter: Sparks
Tutorial: Sniperbolt

Version 1.0 (9/24/2009 7:51:18 PM)
-- Initial Release Of Source Files
*/

// Tutorial From Sniperbolt!

// Utilities
#include common_scripts\utility;
#include maps\_utility;
#include maps\_zombiemode_utility;
#include maps\_zombiemode_zone_manager;
#include maps\_music;

// DLC3 Utilities
#include maps\dlc3_code;
#include maps\dlc3_teleporter;

main()
{
level.DLC3 = spawnStruct(); // Leave This Line Or Else It Breaks Everything

// Must Change These To Your Maps
level.DLC3.createArt = maps\createart\Wake_art::main;
level.DLC3.createFX = maps\createfx\Wake_fx::main;
// level.DLC3.myFX = ::preCacheMyFX;

/*--------------------
FX
----------------------*/
DLC3_FX();

/*--------------------
LEVEL VARIABLES
----------------------*/

// Variable Containing Helpful Text For Modders -- Don't Remove
level.modderHelpText = [];

//
// Change Or Tweak All Of These LEVEL.DLC3 Variables Below For Your Level If You Wish
//

// Edit The Value In Mod.STR For Your Level Introscreen Place
level.DLC3.introString = &"nazi zombie tes";

// Weapons. Pointer function automatically loads weapons used in Der Riese.
level.DLC3.weapons = maps\dlc3_code::include_weapons;

// Power Ups. Pointer function automatically loads power ups used in Der Riese.
level.DLC3.powerUps =  maps\dlc3_code::include_powerups;

// Adjusts how much melee damage a player with the perk will do, needs only be set once. Stock is 1000.
level.DLC3.perk_altMeleeDamage = 1000;

// Adjusts barrier search override. Stock is 400.
level.DLC3.barrierSearchOverride = 400;

// Adjusts power up drop max per round. Stock is 3.
level.DLC3.powerUpDropMax = 3;

// _loadout Variables
level.DLC3.useCoopHeroes = true;

// Bridge Feature
level.DLC3.useBridge = false;

// Hell Hounds
level.DLC3.useHellHounds = true;

// Mixed Rounds
level.DLC3.useMixedRounds = true;

// Magic Boxes -- The Script_Noteworthy Value Names On Purchase Trigger In Radiant
boxArray = [];
boxArray[ boxArray.size ] = "start_chest";
boxArray[ boxArray.size ] = "chest1";
boxArray[ boxArray.size ] = "chest2";
boxArray[ boxArray.size ] = "chest3";
boxArray[ boxArray.size ] = "chest4";
boxArray[ boxArray.size ] = "chest5";
level.DLC3.PandoraBoxes = boxArray;

// Initial Zone(s) -- Zone(s) You Want Activated At Map Start
zones = [];
zones[ zones.size ] = "start_zone";
level.DLC3.initialZones = zones;

// Electricity Switch -- If False Map Will Start With Power On
level.DLC3.useElectricSwitch = true;

// Electric Traps
level.DLC3.useElectricTraps = true;

// _zombiemode_weapons Variables
level.DLC3.usePandoraBoxLight = true;
level.DLC3.useChestPulls = true;
level.DLC3.useChestMoves = true;
level.DLC3.useWeaponSpawn = true;
level.DLC3.useGiveWeapon = true;

// _zombiemode_spawner Varibles
level.DLC3.riserZombiesGoToDoorsFirst = true;
level.DLC3.riserZombiesInActiveZonesOnly = true;
level.DLC3.assureNodes = true;

// _zombiemode_perks Variables
level.DLC3.perksNeedPowerOn = true;

// _zombiemode_devgui Variables
level.DLC3.powerSwitch = true;

/*--------------------
FUNCTION CALLS - PRE _Load
----------------------*/
level thread DLC3_threadCalls();

/*--------------------
ZOMBIE MODE
----------------------*/
[[level.DLC3.weapons]]();
[[level.DLC3.powerUps]]();
maps\ugx_easy_fx::fx_setup();
maps\_zombiemode::main();
level thread maps\ugx_easy_fx::fx_start();
maps\_zombiemode_perks_black_ops::bo_perks_thread();

//thread anti_cheat();

/*--------------------
FUNCTION CALLS - POST _Load
----------------------*/
level.zone_manager_init_func = ::dlc3_zone_init;
level thread DLC3_threadCalls2();
level thread phil_typewriter_intro();
}

dlc3_zone_init()
{

add_adjacent_zone( "start_zone", "zone1", "enter_zone1" );
add_adjacent_zone( "zone1", "zone2", "enter_zone2" );
/*
=============
///ScriptDocBegin
"Name: add_adjacent_zone( <zone_1>, <zone_2>, <flag>, <one_way> )"
"Summary: Sets up adjacent zones."
"MandatoryArg: <zone_1>: Name of first Info_Volume"
"MandatoryArg: <zone_2>: Name of second Info_Volume"
"MandatoryArg: <flag>: Flag to be set to initiate zones"
"OptionalArg: <one_way>: Make <zone_1> adjacent to <zone_2>. Defaults to false."
"Example: add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" );"
///ScriptDocEnd
=============
*/

// Outside East Door
//add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" );
}

anti_cheat()
{
setdvar ("god", "Not Allowed");
setdvar ("ufo", "Not Allowed");
setdvar ("noclip", "Not Allowed");
setdvar ("give", "Not Allowed");
setdvar ("demigod", "Not Allowed");
setdvar ("notarget", "Not Allowed");
setdvar ("jumptonode", "Not Allowed");
setdvar ("thereisacow", "Not Allowed");
setdvar ("player_sprintunlimited", "Not Allowed");
setdvar ("sf_use_ignoreammo", "Not Allowed");


// floating
meleedamage = getdvar ("player_meleedamagemultiplier");
res_range = getdvar ("player_revivetriggerRadius"); 
bleed_out = getdvar ("player_laststandbleedouttime");
melee_range = getdvar ("player_meleerange");
clip_size = getdvar ("player_clipsizemultiplier");
speed = getdvar ("g_speed");
gravity = getdvar ("g_gravity");
death_delay = getdvar ("g_deathdelay");
perk_1 = getdvar ("perk_overheatreduction");
arcade = getdvar ("arcademode_score_revive");
ammo = getdvar ("player_sustainammo");
while(1)
{
if( GetDvarInt( "player_meleedamagemultiplier" ) != meleedamage ||
GetDvarInt( "player_revivetriggerRadius" ) != res_range ||
GetDvarInt( "player_laststandbleedouttime" ) != bleed_out ||
GetDvarInt( "player_meleerange" ) != melee_range ||
GetDvarInt( "player_clipsizemultiplier" ) != clip_size ||
GetDvarInt( "g_speed" ) != speed ||
GetDvarInt( "g_gravity" ) != gravity ||
GetDvarInt( "g_deathdelay" ) != death_delay ||
GetDvarInt( "perk_overheatreduction" ) != perk_1 ||
GetDvarInt( "arcademode_score_revive" ) != arcade ||
GetDvarInt( "player_sustainammo" ) != ammo)
{
setsaveddvar ("player_meleedamagemultiplier", "0.4");
setsaveddvar ("player_revivetriggerRadius", "64");
setsaveddvar ("player_laststandbleedouttime", "30");
setsaveddvar ("player_meleerange", "64");
setsaveddvar ("player_clipsizemultiplier", "1");
setsaveddvar ("g_speed", "190");
setsaveddvar ("g_gravity", "800");
setsaveddvar ("g_deathdelay", "4000");
setsaveddvar ("perk_overheatreduction", "0.7");
setsaveddvar ("arcademode_score_revive", "100");
setsaveddvar ("player_sustainammo", "0");
}
wait 1;
}


// Typewriter style intro text - YaPh1l
phil_typewriter_intro()
{
    text = [];
    text[text.size] = "Somewhere in Germany";
    text[text.size] = "Near Phil's House";
    text[text.size] = "28th of June 2042, 18:32";
   
    intro_hud = [];
    for(i = 0;  i < text.size; i++)
    {
        intro_hud[i] = create_simple_hud();
        intro_hud[i].alignX = "left";
        intro_hud[i].alignY = "bottom";
        intro_hud[i].horzAlign = "left";
        intro_hud[i].vertAlign = "bottom";
        intro_hud[i].foreground = true;
        intro_hud[i].sort = 100;

        if ( level.splitscreen && !level.hidef )
        {
            intro_hud[i].fontScale = 2.75;
        }
        else
        {
            intro_hud[i].fontScale = 1.75;
        }
        intro_hud[i].alpha = 1;
        intro_hud[i].color = (1, 1, 1);
        intro_hud[i].y = -110 + 20 * i;
    }

    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i].label = "";
        for(k = 0; k <= text[i].size; k++)
        {
            intro_hud[i].label = GetSubStr(text[i], 0, k);
            PlaySoundAtPosition("typewriter", (0, 0, 0));
            wait(0.1);
        }
        wait(1.5);
    }
    wait(1.5);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] FadeOverTime( 3.5 );
        intro_hud[i].alpha = 0;
        wait(1.5);
    }   
    wait(2);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] destroy_hud();
    }
}
Last Edit: August 09, 2014, 12:50:09 am by ValenciaRicardo1
Marked as best answer by SoulTaker 12 years ago
broken avatar :(
×
broken avatar :(
Former UGX Lead Asset Creator
Location: ca
Date Registered: 17 August 2012
Last active: 7 years ago
Posts
1,932
Respect
Forum Rank
Zombie Destroyer
Primary Group
UGX V.I.P.
My Groups
More
My Contact & Social Links
More
Personal Quote
Eh?
×
SajeOne's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
UGX V.I.P.
UGX V.I.P.
You seen to be missing a function brace right above the phil_typewriter_into() function. Try this edit:

Code Snippet
Plaintext
/*
Der Frost / Nazi Zombie Sniperbolt Tutorial Version 2.0
Scripter: Sparks
Tutorial: Sniperbolt

Version 1.0 (9/24/2009 7:51:18 PM)
-- Initial Release Of Source Files
*/

// Tutorial From Sniperbolt!

// Utilities
#include common_scripts\utility;
#include maps\_utility;
#include maps\_zombiemode_utility;
#include maps\_zombiemode_zone_manager;
#include maps\_music;

// DLC3 Utilities
#include maps\dlc3_code;
#include maps\dlc3_teleporter;

main()
{
level.DLC3 = spawnStruct(); // Leave This Line Or Else It Breaks Everything

// Must Change These To Your Maps
level.DLC3.createArt = maps\createart\Wake_art::main;
level.DLC3.createFX = maps\createfx\Wake_fx::main;
// level.DLC3.myFX = ::preCacheMyFX;

/*--------------------
FX
----------------------*/
DLC3_FX();

/*--------------------
LEVEL VARIABLES
----------------------*/

// Variable Containing Helpful Text For Modders -- Don't Remove
level.modderHelpText = [];

//
// Change Or Tweak All Of These LEVEL.DLC3 Variables Below For Your Level If You Wish
//

// Edit The Value In Mod.STR For Your Level Introscreen Place
level.DLC3.introString = &"nazi zombie tes";

// Weapons. Pointer function automatically loads weapons used in Der Riese.
level.DLC3.weapons = maps\dlc3_code::include_weapons;

// Power Ups. Pointer function automatically loads power ups used in Der Riese.
level.DLC3.powerUps =  maps\dlc3_code::include_powerups;

// Adjusts how much melee damage a player with the perk will do, needs only be set once. Stock is 1000.
level.DLC3.perk_altMeleeDamage = 1000;

// Adjusts barrier search override. Stock is 400.
level.DLC3.barrierSearchOverride = 400;

// Adjusts power up drop max per round. Stock is 3.
level.DLC3.powerUpDropMax = 3;

// _loadout Variables
level.DLC3.useCoopHeroes = true;

// Bridge Feature
level.DLC3.useBridge = false;

// Hell Hounds
level.DLC3.useHellHounds = true;

// Mixed Rounds
level.DLC3.useMixedRounds = true;

// Magic Boxes -- The Script_Noteworthy Value Names On Purchase Trigger In Radiant
boxArray = [];
boxArray[ boxArray.size ] = "start_chest";
boxArray[ boxArray.size ] = "chest1";
boxArray[ boxArray.size ] = "chest2";
boxArray[ boxArray.size ] = "chest3";
boxArray[ boxArray.size ] = "chest4";
boxArray[ boxArray.size ] = "chest5";
level.DLC3.PandoraBoxes = boxArray;

// Initial Zone(s) -- Zone(s) You Want Activated At Map Start
zones = [];
zones[ zones.size ] = "start_zone";
level.DLC3.initialZones = zones;

// Electricity Switch -- If False Map Will Start With Power On
level.DLC3.useElectricSwitch = true;

// Electric Traps
level.DLC3.useElectricTraps = true;

// _zombiemode_weapons Variables
level.DLC3.usePandoraBoxLight = true;
level.DLC3.useChestPulls = true;
level.DLC3.useChestMoves = true;
level.DLC3.useWeaponSpawn = true;
level.DLC3.useGiveWeapon = true;

// _zombiemode_spawner Varibles
level.DLC3.riserZombiesGoToDoorsFirst = true;
level.DLC3.riserZombiesInActiveZonesOnly = true;
level.DLC3.assureNodes = true;

// _zombiemode_perks Variables
level.DLC3.perksNeedPowerOn = true;

// _zombiemode_devgui Variables
level.DLC3.powerSwitch = true;

/*--------------------
FUNCTION CALLS - PRE _Load
----------------------*/
level thread DLC3_threadCalls();

/*--------------------
ZOMBIE MODE
----------------------*/
[[level.DLC3.weapons]]();
[[level.DLC3.powerUps]]();
maps\ugx_easy_fx::fx_setup();
maps\_zombiemode::main();
level thread maps\ugx_easy_fx::fx_start();
maps\_zombiemode_perks_black_ops::bo_perks_thread();

//thread anti_cheat();

/*--------------------
FUNCTION CALLS - POST _Load
----------------------*/
level.zone_manager_init_func = ::dlc3_zone_init;
level thread DLC3_threadCalls2();
level thread phil_typewriter_intro();
}

dlc3_zone_init()
{

add_adjacent_zone( "start_zone", "zone1", "enter_zone1" );
add_adjacent_zone( "zone1", "zone2", "enter_zone2" );
/*
=============
///ScriptDocBegin
"Name: add_adjacent_zone( <zone_1>, <zone_2>, <flag>, <one_way> )"
"Summary: Sets up adjacent zones."
"MandatoryArg: <zone_1>: Name of first Info_Volume"
"MandatoryArg: <zone_2>: Name of second Info_Volume"
"MandatoryArg: <flag>: Flag to be set to initiate zones"
"OptionalArg: <one_way>: Make <zone_1> adjacent to <zone_2>. Defaults to false."
"Example: add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" );"
///ScriptDocEnd
=============
*/

// Outside East Door
//add_adjacent_zone( "receiver_zone", "outside_east_zone", "enter_outside_east" );
}

anti_cheat()
{
setdvar ("god", "Not Allowed");
setdvar ("ufo", "Not Allowed");
setdvar ("noclip", "Not Allowed");
setdvar ("give", "Not Allowed");
setdvar ("demigod", "Not Allowed");
setdvar ("notarget", "Not Allowed");
setdvar ("jumptonode", "Not Allowed");
setdvar ("thereisacow", "Not Allowed");
setdvar ("player_sprintunlimited", "Not Allowed");
setdvar ("sf_use_ignoreammo", "Not Allowed");


// floating
meleedamage = getdvar ("player_meleedamagemultiplier");
res_range = getdvar ("player_revivetriggerRadius"); 
bleed_out = getdvar ("player_laststandbleedouttime");
melee_range = getdvar ("player_meleerange");
clip_size = getdvar ("player_clipsizemultiplier");
speed = getdvar ("g_speed");
gravity = getdvar ("g_gravity");
death_delay = getdvar ("g_deathdelay");
perk_1 = getdvar ("perk_overheatreduction");
arcade = getdvar ("arcademode_score_revive");
ammo = getdvar ("player_sustainammo");
while(1)
{
if( GetDvarInt( "player_meleedamagemultiplier" ) != meleedamage ||
GetDvarInt( "player_revivetriggerRadius" ) != res_range ||
GetDvarInt( "player_laststandbleedouttime" ) != bleed_out ||
GetDvarInt( "player_meleerange" ) != melee_range ||
GetDvarInt( "player_clipsizemultiplier" ) != clip_size ||
GetDvarInt( "g_speed" ) != speed ||
GetDvarInt( "g_gravity" ) != gravity ||
GetDvarInt( "g_deathdelay" ) != death_delay ||
GetDvarInt( "perk_overheatreduction" ) != perk_1 ||
GetDvarInt( "arcademode_score_revive" ) != arcade ||
GetDvarInt( "player_sustainammo" ) != ammo)
{
setsaveddvar ("player_meleedamagemultiplier", "0.4");
setsaveddvar ("player_revivetriggerRadius", "64");
setsaveddvar ("player_laststandbleedouttime", "30");
setsaveddvar ("player_meleerange", "64");
setsaveddvar ("player_clipsizemultiplier", "1");
setsaveddvar ("g_speed", "190");
setsaveddvar ("g_gravity", "800");
setsaveddvar ("g_deathdelay", "4000");
setsaveddvar ("perk_overheatreduction", "0.7");
setsaveddvar ("arcademode_score_revive", "100");
setsaveddvar ("player_sustainammo", "0");
}
wait 1;
}
}

// Typewriter style intro text - YaPh1l
phil_typewriter_intro()
{
    text = [];
    text[text.size] = "Somewhere in Germany";
    text[text.size] = "Near Phil's House";
    text[text.size] = "28th of June 2042, 18:32";
   
    intro_hud = [];
    for(i = 0;  i < text.size; i++)
    {
        intro_hud[i] = create_simple_hud();
        intro_hud[i].alignX = "left";
        intro_hud[i].alignY = "bottom";
        intro_hud[i].horzAlign = "left";
        intro_hud[i].vertAlign = "bottom";
        intro_hud[i].foreground = true;
        intro_hud[i].sort = 100;

        if ( level.splitscreen && !level.hidef )
        {
            intro_hud[i].fontScale = 2.75;
        }
        else
        {
            intro_hud[i].fontScale = 1.75;
        }
        intro_hud[i].alpha = 1;
        intro_hud[i].color = (1, 1, 1);
        intro_hud[i].y = -110 + 20 * i;
    }

    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i].label = "";
        for(k = 0; k <= text[i].size; k++)
        {
            intro_hud[i].label = GetSubStr(text[i], 0, k);
            PlaySoundAtPosition("typewriter", (0, 0, 0));
            wait(0.1);
        }
        wait(1.5);
    }
    wait(1.5);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] FadeOverTime( 3.5 );
        intro_hud[i].alpha = 0;
        wait(1.5);
    }   
    wait(2);
    for(i = 0 ; i < text.size; i++)
    {
        intro_hud[i] destroy_hud();
    }
}
broken avatar :(
×
broken avatar :(
Location: usCalifornia
Date Registered: 28 July 2013
Last active: 6 years ago
Posts
702
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
Personal Quote
Pizza that is all.
×
SoulTaker's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
SoulTaker's Contact & Social Links
Thanks so much Saje ! Don't know how I didn't catch that one !
:D
broken avatar :(
×
broken avatar :(
Location: usbuffalo
Date Registered: 16 August 2013
Last active: 5 months ago
Posts
927
Respect
Forum Rank
The Decider
Primary Group
Mapper
My Groups
More
My Contact & Social Links
More
Personal Quote
Giggity.
Signature
maps:
Undead Town
http://ugx-mods.com/forum/index.php?topic=2294.0 (Release)
Origins 1922
http://ugx-mods.com/forum/index.php?topic=2659.0
[WIP] mapping 39%, weapons 85%, scripts 65%
[/url]
×
RamboBadass's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Mapper Has released one or more maps to the UGX-Mods community.
RamboBadass's Contact & Social LinksRamboDaGreatAsk merambobadass
lol I loved the topic name sorry glad its solved
broken avatar :(
×
broken avatar :(
Location: usCalifornia
Date Registered: 28 July 2013
Last active: 6 years ago
Posts
702
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
Personal Quote
Pizza that is all.
×
SoulTaker's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
SoulTaker's Contact & Social Links
lol I loved the topic name sorry glad its solved
Lol :P thanks I was in a humor type of mood so that came to mind.
^_^
broken avatar :(
  • n123q45
  • Deleted Member
×
broken avatar :(
n123q45
This user is deleted :(
simple fix... dont use mapname... use zombiemode
broken avatar :(
×
broken avatar :(
Location: usCalifornia
Date Registered: 28 July 2013
Last active: 6 years ago
Posts
702
Respect
Forum Rank
Zombie Enslaver
Primary Group
Donator ♥
My Groups
More
Personal Quote
Pizza that is all.
×
SoulTaker's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
SoulTaker's Contact & Social Links
simple fix... dont use mapname... use zombiemode
Well it worked in the past.
._.
But today it was being weird so yeah plus I wanted to put it where the tutorial said to. If I put it in zombiemode then asked for help in that tutorial forum and I told them I put it in zombiemode I don't want them yelling at me. :P

 
Loading ...