GSC The Official "TFS" Source Code Thread by CabCon

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Hello,
Today I will release my hole source for my Final Statement Menu. Feel free to use this source in any kind of way. But please don't forget I putted much work into this menu and the new array based system. Give any time credits when you will use a function or anythink of this menu. But now just enjoy!

Why?
Modding should be more nicer like the old times!
Learn from it!
Why not ? Modding should be free again.

Credits
CabCon
NzV
You

Download
You do not have permission to view link Log in or register now.

http://cabconmodding.com/attachments/zm_tfs_0-5-rar.6/

Virusscan
You do not have permission to view link Log in or register now.


Links
TO THE OFFICAL POST OF THE MENU WITH FEATURE LIST AND NORMAL DOWNLOAD


Happy Modding,
CabCon
 

Attachments

  • zm_tfs_0.5.rar
    171.1 KB · Views: 1,201
Last edited:

God

Skiddy
Messages
337
Reaction score
240
Points
818
I know there's a link to the original thread, but maybe include a screenshot of the menu? :tongueclosed:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
I know there's a link to the original thread, but maybe include a screenshot of the menu? :tongueclosed:
A good idea I will add one soon. :smile:
 

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
240
Points
913
Thank's for posting it again :grinning:
PS :I see what we have in the menu because the system is big but realy cool to know new functions...
Thank's :grinning:
 
Last edited:

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Thank's for posting it again :grinning:
PS :I see what we have in the menu becajse the system is big but realy cool to know new functions...
Thank's :grinning:
Thank you :smile:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Does you have the codes and function to edit zombie spawn delay in bo2?
yeah.
Code:
SetZombieSpawnDelay(i) //0.08 Def
{
    set_zombie_var("zombie_spawn_delay", i);
    level.zombie_spawn_delay = i;
    level.zombie_vars["zombie_spawn_delay"] = i;
    self iprintln("Zombie Spawn Delay Set To  ^2" + i);
}
 

Guilherme_INFR

Veteran
Messages
82
Reaction score
21
Points
793
yeah.
Code:
SetZombieSpawnDelay(i) //0.08 Def
{
    set_zombie_var("zombie_spawn_delay", i);
    level.zombie_spawn_delay = i;
    level.zombie_vars["zombie_spawn_delay"] = i;
    self iprintln("Zombie Spawn Delay Set To  ^2" + i);
}
:O Thank youuuuu very much! :grinning:
 

Craze

Alt + F4
Messages
229
Reaction score
163
Points
903
Hello,
Today I will release my hole source for my Final Statement Menu. Feel free to use this source in any kind of way. But please don't forget I putted much work into this menu and the new array based system. Give any time credits when you will use a function or anythink of this menu. But now just enjoy!

Why?
Modding should be more nicer like the old times!
Learn from it!
Why not ? Modding should be free again.

Credits
CabCon
NzV
You

Download
You do not have permission to view link Log in or register now.


Virusscan
You do not have permission to view link Log in or register now.


Links
TO THE OFFICAL POST OF THE MENU WITH FEATURE LIST AND NORMAL DOWNLOAD


Happy Modding,
CabCon
Can I create it into a menu base? :grinning:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Does anyone have the code for golden shovel and normal shovel and golden helmet to show in you right side slot bo2 ps3
Here you go:

C++:
Give_Shovel()
{
    if((level.script == "zm_tomb") && isDefined(self.dig_vars))
    {
        self play_sound_on_ent("purchase");
        self.dig_vars["has_shovel"] = 1;
        self.dig_vars["n_spots_dug"] = 0;
        self.dig_vars["has_upgraded_shovel"] = 0;
        n_player = self getentitynumber() + 1;
        level setclientfield("shovel_player" + n_player, 1);
        self stealth_iprintln("Shovel ^2Gived");
    }
    else
        self stealth_iprintln("^1ERROR: ^7Shovel Not Supported On This Map");
}

Give_GoldenShovel()
{
    if((level.script == "zm_tomb") && isDefined(self.dig_vars))
    {
        self play_sound_on_ent("purchase");
        self.dig_vars["has_shovel"] = 1;
        self.dig_vars["n_spots_dug"] = 64;
        self.dig_vars["has_upgraded_shovel"] = 1;
        n_player = self getentitynumber() + 1;
        level setclientfield( "shovel_player" + n_player, 2);
        self playsoundtoplayer("zmb_squest_golden_anything", self);
        self stealth_iprintln("Golden Shovel ^2Gived");
    }
    else
        self stealth_iprintln("^1ERROR: ^7Golden Shovel Not Supported On This Map");
}

Credits to
Me and NvZ
 

danny517001*

Veteran
Messages
16
Reaction score
11
Points
793
Does anyone know how to give yourself boose,candy,and gramophone for the dlc maps buried and origins and also does anyone know the names of the buildables for MOTD/ORIGINS dlcs bo2 zombies please and thank you.
 
Top