You are viewing our Forum Archives. To view or take place in current topics click here.
Modding Nazi_Zombie_Prototype.ff
Posted:
Modding Nazi_Zombie_Prototype.ffPosted:
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
These are codes that can be used in your "Nazi_Zombie_Prototype.ff"
Set Prestige and Level
self maps_challenges_coop::statSet( "plevel", value );
self maps_challenges_coop::statSet( "rank", value );
Set Your Prestige To 11th
self maps_challenges_coop::statSet( "plevel", 11 );
Set Stats
self maps_challenges_coop::statSet( "kills", value );
self maps_challenges_coop::statset( "wins", value );
self maps_challenges_coop::statset( "score", value );
self maps_challenges_coop::statSet( "deaths", value );
Set Stats For Each Game Mode!
self maps_challenges_coop::statSet( "TDM_KILLS", value );
self maps_challenges_coop::statset( "DM_KILLS", value );
self maps_challenges_coop::statset( "SAB_KILLS", value );
self maps_challenges_coop::statSet( "SD_KILLS", value );
self maps_challenges_coop::statset( "CTF_KILLS", value );
self maps_challenges_coop::statset( "DOM_KILLS", value );
self maps_challenges_coop::statSet( "TWAR_KILLS", value );
self maps_challenges_coop::statset( "KOTH_KILLS", value );
self maps_challenges_coop::statSet( "TDM_WINS", value );
self maps_challenges_coop::statset( "DM_WINS", value );
self maps_challenges_coop::statset( "SAB_WINS", value );
self maps_challenges_coop::statSet( "SD_WINS", value );
self maps_challenges_coop::statset( "CTF_WINS", value );
self maps_challenges_coop::statset( "DOM_WINS", value );
self maps_challenges_coop::statSet( "TWAR_WINS", value );
self maps_challenges_coop::statset( "KOTH_WINS", value );
self maps_challenges_coop::statSet( "TDM_SCORE", value );
self maps_challenges_coop::statset( "DM_SCORE", value );
self maps_challenges_coop::statset( "SAB_SCORE", value );
self maps_challenges_coop::statSet( "SD_SCORE", value );
self maps_challenges_coop::statset( "CTF_SCORE", value );
self maps_challenges_coop::statset( "DOM_SCORE", value );
self maps_challenges_coop::statSet( "TWAR_SCORE", value );
self maps_challenges_coop::statset( "KOTH_SCORE", value );
Set Streaks
self maps_challenges_coop::statSet( "win_streak", value );
self maps_challenges_coop::statSet( "kill_streak", value );
Set Assists and Headshots
self maps_challenges_coop::statSet( "headshots", value );
self maps_challenges_coop::statSet( "assists", value );
Set Time Played (For the value you need to put it in seconds. Do not put letters in it)
self maps_challenges_coop::statset( "time_played_total", value );
Text In Game
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
How to put these in the nazi_zombie_prototype.ff
1. Open up the nazi_zombie_prototype.ff in .ff viewer and find zombiescore
2. Click raw file and look for "maps_zombiemode_score.gsc"
3. It will start off with this
#include maps_utility;
#include common_scriptsutility;
#include maps_zombiemode_utility;
init()
{
}
player_add_points( event, mod, hit_location )
{
After that text you can put in the codes you would like. Heres an example.
#include maps_utility;
#include common_scriptsutility;
#include maps_zombiemode_utility;
init()
{
}
player_add_points( event, mod, hit_location )
{
add_to_player_score( 9999 );
self maps_challenges_coop::statSet( "plevel", 10 );
self maps_challenges_coop::statSet( "rank", 65 );
self maps_challenges_coop::incRankXP( 153590 );
self maps_challenges_coop::statSet( "kills", 2000000000 );
self maps_challenges_coop::statset( "wins", 2000000000 );
self maps_challenges_coop::statset( "score", 2000000000 );
self maps_challenges_coop::statset( "deaths", 2000000000 );
self maps_challenges_coop::statset( "time_played_total", 0 );
self maps_challenges_coop::statSet( "headshots", 2147483647 );
self maps_challenges_coop::statSet( "assists", 2147483647 );
self maps_challenges_coop::statSet( "win_streak", 69696969 );
self maps_challenges_coop::statSet( "kill_streak", 69696969 );
Hope you like!
-Matt
Set Prestige and Level
self maps_challenges_coop::statSet( "plevel", value );
self maps_challenges_coop::statSet( "rank", value );
Set Your Prestige To 11th
self maps_challenges_coop::statSet( "plevel", 11 );
Set Stats
self maps_challenges_coop::statSet( "kills", value );
self maps_challenges_coop::statset( "wins", value );
self maps_challenges_coop::statset( "score", value );
self maps_challenges_coop::statSet( "deaths", value );
Set Stats For Each Game Mode!
self maps_challenges_coop::statSet( "TDM_KILLS", value );
self maps_challenges_coop::statset( "DM_KILLS", value );
self maps_challenges_coop::statset( "SAB_KILLS", value );
self maps_challenges_coop::statSet( "SD_KILLS", value );
self maps_challenges_coop::statset( "CTF_KILLS", value );
self maps_challenges_coop::statset( "DOM_KILLS", value );
self maps_challenges_coop::statSet( "TWAR_KILLS", value );
self maps_challenges_coop::statset( "KOTH_KILLS", value );
self maps_challenges_coop::statSet( "TDM_WINS", value );
self maps_challenges_coop::statset( "DM_WINS", value );
self maps_challenges_coop::statset( "SAB_WINS", value );
self maps_challenges_coop::statSet( "SD_WINS", value );
self maps_challenges_coop::statset( "CTF_WINS", value );
self maps_challenges_coop::statset( "DOM_WINS", value );
self maps_challenges_coop::statSet( "TWAR_WINS", value );
self maps_challenges_coop::statset( "KOTH_WINS", value );
self maps_challenges_coop::statSet( "TDM_SCORE", value );
self maps_challenges_coop::statset( "DM_SCORE", value );
self maps_challenges_coop::statset( "SAB_SCORE", value );
self maps_challenges_coop::statSet( "SD_SCORE", value );
self maps_challenges_coop::statset( "CTF_SCORE", value );
self maps_challenges_coop::statset( "DOM_SCORE", value );
self maps_challenges_coop::statSet( "TWAR_SCORE", value );
self maps_challenges_coop::statset( "KOTH_SCORE", value );
Set Streaks
self maps_challenges_coop::statSet( "win_streak", value );
self maps_challenges_coop::statSet( "kill_streak", value );
Set Assists and Headshots
self maps_challenges_coop::statSet( "headshots", value );
self maps_challenges_coop::statSet( "assists", value );
Set Time Played (For the value you need to put it in seconds. Do not put letters in it)
self maps_challenges_coop::statset( "time_played_total", value );
Text In Game
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
How to put these in the nazi_zombie_prototype.ff
1. Open up the nazi_zombie_prototype.ff in .ff viewer and find zombiescore
2. Click raw file and look for "maps_zombiemode_score.gsc"
3. It will start off with this
#include maps_utility;
#include common_scriptsutility;
#include maps_zombiemode_utility;
init()
{
}
player_add_points( event, mod, hit_location )
{
After that text you can put in the codes you would like. Heres an example.
#include maps_utility;
#include common_scriptsutility;
#include maps_zombiemode_utility;
init()
{
}
player_add_points( event, mod, hit_location )
{
add_to_player_score( 9999 );
self maps_challenges_coop::statSet( "plevel", 10 );
self maps_challenges_coop::statSet( "rank", 65 );
self maps_challenges_coop::incRankXP( 153590 );
self maps_challenges_coop::statSet( "kills", 2000000000 );
self maps_challenges_coop::statset( "wins", 2000000000 );
self maps_challenges_coop::statset( "score", 2000000000 );
self maps_challenges_coop::statset( "deaths", 2000000000 );
self maps_challenges_coop::statset( "time_played_total", 0 );
self maps_challenges_coop::statSet( "headshots", 2147483647 );
self maps_challenges_coop::statSet( "assists", 2147483647 );
self maps_challenges_coop::statSet( "win_streak", 69696969 );
self maps_challenges_coop::statSet( "kill_streak", 69696969 );
Hope you like!
-Matt
#2. Posted:
Status: Offline
Joined: Apr 04, 201014Year Member
Posts: 39
Reputation Power: 44
Status: Offline
Joined: Apr 04, 201014Year Member
Posts: 39
Reputation Power: 44
thanks ...................
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Mar 18, 201014Year Member
Posts: 3,359
Reputation Power: 118
Status: Offline
Joined: Mar 18, 201014Year Member
Posts: 3,359
Reputation Power: 118
Very nice post! Thanks!
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
i hope you guys like this!
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Jan 29, 201014Year Member
Posts: 277
Reputation Power: 12
Status: Offline
Joined: Jan 29, 201014Year Member
Posts: 277
Reputation Power: 12
can you give me a link to download everything needed to create an iso with any prestige and 11th prestige with in game mods ?
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
Status: Offline
Joined: May 03, 200915Year Member
Posts: 2,505
Reputation Power: 425
iiSteeevooO-x wrote can you give me a link to download everything needed to create an iso with any prestige and 11th prestige with in game mods ?
hold on got to find them!
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: May 25, 201014Year Member
Posts: 567
Reputation Power: 19
im pretty sure
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
Didnt work?
or am i doing somin wrong
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
wait 0.4;
self iPrintlnBold( "Your Text" );
Didnt work?
or am i doing somin wrong
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Jul 09, 201014Year Member
Posts: 15
Reputation Power: 0
Any Code That Unlocks All Challenges ANd Gun Attachments?
- 1useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jul 08, 201014Year Member
Posts: 298
Reputation Power: 13
Status: Offline
Joined: Jul 08, 201014Year Member
Posts: 298
Reputation Power: 13
this keeps saying that the file is to big and when i try to burn it it fails at %51.26
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Jan 31, 201113Year Member
Posts: 1
Reputation Power: 0
KnownTheBBoyz wrote this keeps saying that the file is to big and when i try to burn it it fails at %51.26
Your disk is too small. Do you have the discs he listed?
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.