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

My Game Keeps Crashing?! =|

HOT
broken avatar :(
Created 9 years ago
by Elzy
0 Members and 1 Guest are viewing this topic.
6,972 views
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
Signature
Retaken CANCELED!
----
Misty
Map Progress:
10%
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
I Compile my map and it does its things etc the reflection probs, and after that when it gets done loading for the main game it just crash's as you can see here, the only scripts i have edited so far are my zones and quick revive. if someone can please help me fix this that would be great ! :-\ thanks (and if you need Radiant pictures just tell me ...)

Code Snippet
Plaintext
#include maps\_utility; 
#include common_scripts\utility;
#include maps\_zombiemode_utility;

init()
{     

PrecacheModel("zombie_vending_revive_sumpf");
PrecacheModel("zombie_vending_revive_sumpf_on");

vending_triggers = GetEntArray( "zombie_vending", "targetname" );

if ( vending_triggers.size < 1 )
{
return;
}

vending_upgrade_trigger = GetEntArray("zombie_vending_upgrade", "targetname");

if ( vending_upgrade_trigger.size >= 1 )
{
array_thread( vending_upgrade_trigger, ::vending_upgrade );;
}


// this map uses atleast 1 perk machine
PrecacheItem( "zombie_perk_bottle_doubletap" );
PrecacheItem( "zombie_perk_bottle_jugg" );
PrecacheItem( "zombie_perk_bottle_revive" );
PrecacheItem( "zombie_perk_bottle_sleight" );
PrecacheItem( "zombie_knuckle_crack" );

PrecacheShader( "specialty_juggernaut_zombies" );
PrecacheShader( "specialty_fastreload_zombies" );
PrecacheShader( "specialty_doubletap_zombies" );
PrecacheShader( "specialty_quickrevive_zombies" );

//PI ESM - sumpf vending machine
if (isDefined(level.script) && level.script == "nazi_zombie_sumpf")
{
PrecacheModel("zombie_vending_jugg_on_price");
PrecacheModel("zombie_vending_doubletap_price");
PrecacheModel("zombie_vending_revive_on_price");
PrecacheModel("zombie_vending_sleight_on_price");
}
else
{
PrecacheModel("zombie_vending_jugg_on");
PrecacheModel("zombie_vending_doubletap_on");
PrecacheModel("zombie_vending_revive_on");
PrecacheModel("zombie_vending_sleight_on");
precachemodel("zombie_vending_packapunch_on");
}

level._effect["sleight_light"] = loadfx("misc/fx_zombie_cola_on");
level._effect["doubletap_light"] = loadfx("misc/fx_zombie_cola_dtap_on");
level._effect["jugger_light"] = loadfx("misc/fx_zombie_cola_jugg_on");
level._effect["revive_light"] = loadfx("misc/fx_zombie_cola_revive_on");
level._effect["packapunch_fx"] = loadfx("maps/zombie/fx_zombie_packapunch");

if( !isDefined( level.packapunch_timeout ) )
{
level.packapunch_timeout = 15;
}

PrecacheString( &"ZOMBIE_PERK_JUGGERNAUT" );
PrecacheString( &"ZOMBIE_PERK_QUICKREVIVE" );
PrecacheString( &"ZOMBIE_PERK_FASTRELOAD" );
PrecacheString( &"ZOMBIE_PERK_DOUBLETAP" );
PrecacheString( &"ZOMBIE_PERK_PACKAPUNCH" );

set_zombie_var( "zombie_perk_cost", 2000 );
set_zombie_var( "zombie_perk_juggernaut_health", 160 );

// this map uses atleast 1 perk machine
array_thread( vending_triggers, ::vending_trigger_think );
array_thread( vending_triggers, :: electric_perks_dialog);


level thread turn_jugger_on();
level thread turn_doubletap_on();
level thread turn_sleight_on();
level thread turn_revive_on();
level thread turn_PackAPunch_on();


level thread machine_watcher();
level.speed_jingle = 0;
level.revive_jingle = 0;
level.doubletap_jingle = 0;
level.jugger_jingle = 0;
level.packa_jingle = 0;

}
Code Snippet
Plaintext
dlc3_zone_init()
{

        add_adjacent_zone("start_zone","zone_two","zone_two_init");
add_adjacent_zone("zone_two","zone_three","zone_three_init");
add_adjacent_zone("zone_three","zone_four","zone_four_init");
add_adjacent_zone("zone_four","zone_four_b","zone_four_b_init");
/*
=============
///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
=============
*/
Last Edit: November 11, 2015, 02:37:54 am by Elzy
This topic contains a post which is marked as the Best Answer. Click here to view it.
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
Signature
If you want scripts / features made for you, then contact me by PM or email / skype etc
it will cost you tho so if you have no intention of reciprocating don't even waste my time ;)
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
sounds like the memory limit

what was the last thing you added / changed

i have no idea what your showing us in those code boxes tho, its just a snippet from default code?
Last Edit: November 11, 2015, 02:40:54 am by Harry Bo21
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
the first code box is my perks, the second code box is my zones, here is a picture of the zone i have been working on the most for the last 3 days now, (sorry if its kinda blurry)

and no im not just spamming bush's/misc models in radiant -_- (most of it is grass)
sounds like the memory limit

what was the last thing you added / changed

i have no idea what your showing us in those code boxes tho, its just a snippet from default code?
Last Edit: November 11, 2015, 03:00:28 am by Elzy
broken avatar :(
×
broken avatar :(
☭ Soviet Commander ☭
Location: us
Date Registered: 13 August 2012
Last active: 8 years ago
Posts
2,790
Respect
Forum Rank
King of the Zombies
Primary Group
Community Daedra
My Groups
More
My Contact & Social Links
More
Signature
Let's keep this thread on topic from here on in. -DBZ

+1 to off-topic reply -DBZ

lmao. Too funny.

Goliath Script Placer: http://ugx-mods.com/forum/index.php/topic,11234.msg125257/topicseen.html#new

"...Christ, people. Learn C, instead of just stringing random characters
together until it compiles (with warnings)..."

-Linus Torvalds
×
daedra descent's Groups
Community Daedra
Community Daedra
daedra descent's Contact & Social LinksBlueSoviet
Probably script related. I assume when you say you edited your quick revive you mean for solo quick revive, yes? What exactly did you add/change(actual code)?
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
the first code box is my perks

Yea i got that, but its only "part of" the perk script, and from what i see it is the "stock" one, no changes mde to that part?
Last Edit: November 11, 2015, 03:20:49 am by Harry Bo21
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
i pretty much just changed the texture of the quick revive to fit my spawn room, the only line of code i edited was
Code Snippet
Plaintext
PrecacheModel("zombie_vending_revive_sumpf");
PrecacheModel("zombie_vending_revive_sumpf_on");
that little part in the first code, plus i do have that included in my mod.csv
Probably script related. I assume when you say you edited your quick revive you mean for solo quick revive, yes? What exactly did you add/change(actual code)?
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
i pretty much just changed the texture of the quick revive to fit my spawn room, the only line of code i edited was
Code Snippet
Plaintext
PrecacheModel("zombie_vending_revive_sumpf");
PrecacheModel("zombie_vending_revive_sumpf_on");
that little part in the first code, plus i do have that included in my mod.csv
thats just the precache, you need to change the "setModel" too or itll fail to change the model when you turn power on

( the "off" model will work because its placed in the map and already set as this models "model", but the on model is "swapped" when power is turned on )
Last Edit: November 11, 2015, 03:24:57 am by Harry Bo21
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
i have the model set in Radiant?, or do you mean in the script?
thats just the precache, you need to change the "setModel" too or itll fail to change the model when you turn power on

( the "off" model will work because its placed in the map and already set as this models "model", but the on model is "swapped" when power is turned on )
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
Code Snippet
Plaintext
PrecacheModel("zombie_vending_revive_sumpf_on");

You changed this, but further down the script youll see something like this

Code Snippet
Plaintext
setModel( "zombie_vending_revive_on" );

so ofc, that needs changing too, to :

Code Snippet
Plaintext
setModel( "zombie_vending_revive_sumpf_on" );
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
yeah its not the perk script, i just edited it, and its still crashing, the only thing i think it can be (like you said) is a memory limit... or its my zone scripts BUT i highly doubt that
Code Snippet
Plaintext
PrecacheModel("zombie_vending_revive_sumpf_on");

You changed this, but further down the script youll see something like this

Code Snippet
Plaintext
setModel( "zombie_vending_revive_on" );

so ofc, that needs changing too, to :

Code Snippet
Plaintext
setModel( "zombie_vending_revive_sumpf_on" );
broken avatar :(
  • steviewonder87
  • Deleted Member
×
broken avatar :(
steviewonder87
This user is deleted :(
Turn on developer 1. Turn on logfile 2. Launch map. Then post the error at the bottom of the logfile.txt in your mods folder.
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
yeah its not the perk script, i just edited it, and its still crashing, the only thing i think it can be (like you said) is a memory limit... or its my zone scripts BUT i highly doubt that
I didnt say it was the issue, it was just A issue ;)

Quote
or itll fail to change the model when you turn power on
Last Edit: November 11, 2015, 03:58:20 am by Harry Bo21
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 8 August 2015
Last active: 7 years ago
Posts
158
Respect
Forum Rank
Pack-a-Puncher
Primary Group
Member
My Contact & Social Links
More
Personal Quote
Misty
×
Elzy's Groups
Elzy's Contact & Social LinksElzzy
this might be something ... , this was in my console log
Code Snippet
Plaintext
animscripts/traverse/wall_hop_zombieError: Waited 2812 msec for missing asset "ai_flamethrower_crouch_pain".
Error: Could not load xanim "ai_flamethrower_crouch_pain".
Error: Could not load xanim "ai_flamethrower_stand_pain".
Error: Could not load xanim "ai_flamethrower_wounded_stand_leg".
Error: Could not load xanim "ai_flamethrower_wounded_stand_head".
Error: Could not load xanim "ai_flamethrower_wounded_stand_chest".
Error: Could not load xanim "ai_flamethrower_wounded_stand_arm".
Error: Could not load xanim "ai_bonzai_buddy_fail_rear".
Error: Could not load xanim "ai_bonzai_buddy_fail_front".
Error: Could not load xanim "ai_bonzai_enemy_fail_rear".
Error: Could not load xanim "ai_bonzai_enemy_fail_right".
Error: Could not load xanim "ai_bonzai_enemy_fail_left".
Error: Could not load xanim "ai_bonzai_enemy_fail_front".
Error: Could not load xanim "ai_flamethrower_crouch_death".
Error: Could not load xanim "ai_flamethrower_stand_death".
Error: Could not load xanim "ai_flamethrower_death_b".
Error: Could not load xanim "ai_attacked_german_shepherd_05_death_a".
Error: Could not load xanim "ai_attacked_german_shepherd_04_getup_a".
Error: Could not load xanim "ai_attacked_german_shepherd_04_middle_a".
Error: Could not load xanim "ai_attacked_german_shepherd_03_shoot_a".
Error: Could not load xanim "ai_attacked_german_shepherd_03_push_a".
Error: Could not load xanim "ai_attacked_german_shepherd_02_getup_a".
Error: Could not load xanim "ai_attacked_german_shepherd_02_idle_a".
Error: Could not load xanim "ai_attacked_german_shepherd_01_start_a".
Error: Could not load xanim "ai_bonzai_enemy_attack_player_success".
Error: Could not load xanim "ai_bonzai_enemy_attack_player_fail".
Error: Could not load xanim "ai_bonzai_enemy_attack_player_intro".
Error: Could not load xanim "ai_bonzai_enemy_attack_player".
Error: Could not load xanim "ai_bonzai_enemy_attack_player_impact".
Error: Could not load xanim "ai_bonzai_enemy_success_rear".
Error: Could not load xanim "ai_bonzai_enemy_success_front".
Error: Could not load xanim "ai_bonzai_buddy_success_rear".
Error: Could not load xanim "ai_bonzai_buddy_success_right".
Error: Could not load xanim "ai_bonzai_buddy_success_left".
Error: Could not load xanim "ai_bonzai_buddy_success_front".
Error: Could not load xanim "ai_flamethrower_stand_2_crouch".
Error: Could not load xanim "ai_flamethrower_crouch_2_stand".
Error: Could not load xanim "ai_flamethrower_crouch_turn90r".
Error: Could not load xanim "ai_flamethrower_crouch_turn90l".
Error: Could not load xanim "ai_flamethrower_turn180".
Error: Could not load xanim "ai_flamethrower_turn135r".
Error: Could not load xanim "ai_flamethrower_turn135l".
Error: Could not load xanim "ai_flamethrower_turn90r".
Error: Could not load xanim "ai_flamethrower_turn90l".
Error: Could not load xanim "ai_flamethrower_turn45r".
Error: Could not load xanim "ai_flamethrower_turn45l".
Error: Could not load xanim "ai_flamethrower_crouch_aim_5".
Error: Could not load xanim "ai_flamethrower_aim_5".
Error: Could not load xanim "ai_flamethrower_crouch_idle_a_alert_v1".
Error: Could not load xanim "ai_flamethrower_stand_idle_alert_v1".
Error: Could not load xanim "ai_flamethrower_crouch_aim_8".
Error: Could not load xanim "ai_flamethrower_aim_8".
Error: Could not load xanim "ai_flamethrower_crouch_aim_2".
Error: Could not load xanim "ai_flamethrower_aim_2".
Error: Could not load xanim "ai_flamethrower_crouch_aim_6".
Error: Could not load xanim "ai_flamethrower_aim_6".
Error: Could not load xanim "ai_flamethrower_crouch_aim_4".
Error: Could not load xanim "ai_flamethrower_aim_4".
Error: Could not load xanim "ai_mg_shoulder_run".
Error: Could not load xanim "ai_bonzai_sprint_d".
Error: Could not load xanim "ai_bonzai_sprint_c".
Error: Could not load xanim "ai_bonzai_sprint_b".
Error: Could not load xanim "ai_bonzai_sprint_a".
Error: Could not load xanim "ai_flamethrower_combatrun_c".
Error: Could not load xanim "ai_flamethrower_crouch_twitch".
Error: Could not load xanim "ai_flamethrower_crouch_idle_b".
Error: Could not load xanim "ai_flamethrower_crouch_idle_a".
Error: Could not load xanim "ai_flamethrower_stand_twitch".
Error: Could not load xanim "ai_flamethrower_stand_idle_casual_v1".
Error: Could not load xanim "ai_mg_shoulder_run2crouch".
Error: Could not load xanim "ai_mg_shoulder_crouch_idle".
Error: Could not load xanim "ai_mg_shoulder_run2stand".
Error: Could not load xanim "ai_mg_shoulder_stand_idle".
Error: Could not load xanim "ai_flame_crouch_fire_center".
Error: Could not load xanim "ai_flame_fire_center".
Error: Could not load xanim "void_loop".
Error: Could not load xanim "int_bonzai_attack_player_success".
Error: Could not load xanim "int_bonzai_attack_player_fail".
Error: Could not load xanim "int_bonzai_attack_player_intro".
Error: Could not load xanim "int_bonzai_attack_player".
Error: Could not load xanim "int_bonzai_attack_player_impact".
Error: Could not load xanim "player_view_dog_knockdown_neck_miss".
Error: Could not load xanim "player_view_dog_knockdown_neck_snap".
Error: Could not load xanim "player_view_dog_knockdown_saved".
Error: Could not load xanim "player_view_dog_knockdown_late".
Error: Could not load xanim "player_view_dog_knockdown".
Error: Could not load xanim "zombie_dog_run_pain_front".
Error: Could not load xanim "zombie_dog_pain_hit_right".
Error: Could not load xanim "zombie_dog_pain_hit_left".
Error: Could not load xanim "zombie_dog_pain_hit_front".
Error: Could not load xanim "zombie_dog_pain_hit_back".
Error: Could not load xanim "german_shepard_run_pain_hit_front".
Error: Could not load xanim "german_shepard_pain_hit_right".
Error: Could not load xanim "german_shepard_pain_hit_left".
Error: Could not load xanim "german_shepard_pain_hit_back".
Error: Could not load xanim "german_shepard_pain_hit_front".
Error: Could not load xanim "german_shepherd_player_neck_snap".
Error: Could not load xanim "german_shepherd_walk".
Error: Could not load xanim "german_shepherd_traverse_up_80".
Error: Could not load xanim "german_shepherd_traverse_up_40".
Error: Could not load xanim "german_shepherd_traverse_down_40".
Error: Could not load xanim "german_shepherd_attack_player_miss_turnl".
Error: Could not load xanim "german_shepherd_attack_player_miss_turnr".
Error: Could not load xanim "german_shepherd_attack_ai_05_kill_a".
Error: Could not load xanim "german_shepherd_attack_ai_04_middle_a".
Error: Could not load xanim "german_shepherd_attack_ai_03_shot_a".
Error: Could not load xanim "german_shepherd_attack_ai_03_pushed_a".
Error: Could not load xanim "german_shepherd_attack_ai_02_idle_a".
Error: Could not load xanim "german_shepherd_attack_ai_01_start_a".
Error: Could not load xanim "german_shepherd_run_flashbang".
Error: Could not load xanim "german_shepherd_run_pain".
Error: Could not load xanim "german_shepherd_run_stop".
Error: Could not load xanim "german_shepherd_run_jump_window_40".
Error: Could not load xanim "german_shepherd_run_jump_40".
Error: Could not load xanim "german_shepherd_run_attack_miss".
Error: Could not load xanim "german_shepherd_run_attack_low".
Error: Could not load xanim "german_shepherd_run_attack".
Error: Could not load xanim "german_shepard_run_turn_180_right".
Error: Could not load xanim "german_shepard_run_turn_180_left".
Error: Could not load xanim "german_shepard_run_turn_90_right".
Error: Could not load xanim "german_shepard_run_turn_90_left".
Error: Could not load xanim "german_shepard_turn_180_right".
Error: Could not load xanim "german_shepard_turn_180_left".
Error: Could not load xanim "german_shepard_turn_90_right".
Error: Could not load xanim "german_shepard_turn_90_left".
Error: Could not load xanim "german_shepherd_run_lean_r".
Error: Could not load xanim "german_shepherd_run_lean_l".
Error: Could not load xanim "german_shepherd_run".
Error: Could not load xanim "german_shepherd_run_start".
Error: Could not load xanim "german_shepherd_attackidle_growl".
Error: Could not load xanim "german_shepherd_attackidle_bark".
Error: Could not load xanim "german_shepherd_attackidle".
Error: Could not load xanim "german_shepherd_idle".
Error: Could not load xanim "german_shepherd_attack_player_late".
Error: Could not load xanim "german_shepherd_attack_look_up".
Error: Could not load xanim "german_shepherd_look_up".
Error: Could not load xanim "german_shepherd_attack_look_left".
Error: Could not load xanim "german_shepherd_look_left".
Error: Could not load xanim "german_shepherd_attack_look_right".
Error: Could not load xanim "german_shepherd_look_right".
Error: Could not load xanim "german_shepherd_attack_look_down".
Error: Could not load xanim "german_shepherd_look_down".
Error: Could not load xanim "p_makinraid_hatch".
Error: Could not load xanim "crew_sherman_passenger9_combatidle_player".
Error: Could not load xanim "crew_sherman_passenger8_combatidle_player".
Error: Could not load xanim "crew_lvt4_peleliu1_character9_player".
Error: Could not load xanim "crew_lvt4_peleliu1_character5_player".
Error: Could not load xanim "crew_lvt4_peleliu1_character4_player".
Error: Could not load xanim "p_flak1_tag2_idle".
Error: Could not load xanim "pb_prone_crawl_right_hold_satchel".
Error: Could not load xanim "pb_prone_crawl_left_hold_satchel".
Error: Could not load xanim "pb_prone_crawl_back_hold_satchel".
Error: Could not load xanim "pb_prone_crawl_hold_satchel".
Error: Could not load xanim "pb_crouch_hold_run_right_satchel".
Error: Could not load xanim "pb_crouch_hold_run_left_satchel".
Error: Could not load xanim "pb_crouch_hold_run_back_satchel".
Error: Could not load xanim "pb_crouch_hold_run_satchel".
Error: Could not load xanim "pb_hold_run_left_satchel".
Error: Could not load xanim "pb_hold_run_right_satchel".
Error: Could not load xanim "pb_hold_run_back_satchel".
Error: Could not load xanim "pb_hold_run_satchel".
Error: Could not load xanim "pb_sprint_hold_satchel".
Error: Could not load xanim "pb_crouch_hold_idle_satchel".
Error: Could not load xanim "pb_hold_idle_satchel".
Error: Could not load xanim "pb_prone_hold_satchel".
Error: Could not load xanim "pt_hold_prone_throw_satchel".
Error: Could not load xanim "pt_hold_throw_satchel".
Error: Could not load xmodel "collision_geo_32x32x128".
Error: Could not load rawfile "shock/zombie_death.shock".
Error: couldn't open 'shock/zombie_death.shock'.
Error: Could not load material "nightvision_overlay_goggles".
Error: Could not load material "decode_characters".
Error: Could not load material "decode_characters_glow".
Error: Could not load material "killicondied".
Error: Could not load material "killiconcrush".
Error: Could not load material "killiconfalling".
Error: Could not load material "killiconsuicide".
Error: Could not load material "killiconheadshot".
Error: Could not load material "killiconmelee".
LOADING... collision map
LOADING... graphics
LOADING... maps/retaken.d3dbsp
LOADING... game media
LOADING...  - textures
Error: Could not load material "headicondisconnected".
Error: Could not load material "headiconyouinkillcam".
Error: Could not load material "objective_up".
Error: Could not load material "objective_down".
Error: Could not load material "compassping_friendly".
Error: Could not load material "objective_friendly_chat".
Error: Could not load material "compassping_enemy".
Error: Could not load material "compass_radarline".
Error: Could not load material "compass_objpoint_airstrike_busy".
Error: Could not load material "compass_objpoint_airstrike_friendly".
Error: Could not load material "hud_flashbangicon".
Error: Could not load material "hud_banzai".
Error: Could not load material "hud_banzaigrenade".
LOADING...  - models
LOADING...  - items
LOADING...  - inline models
LOADING...  - server models
Error: Could not load fx "fx_zombie_light_elec_room_on".
Error: Could not load fx "maps/mp_maps/fx_mp_smoke_stack".
Error: Could not load fx "impacts/fx_deathfx_bloodpool_view".
Error: Could not load fx "impacts/fx_deathfx_dogbite".
Error: Could not load fx "weapon/grenade/fx_american_smoke_grenade".
Error: Could not load fx "misc/fx_flare_sky_white_10sec".
Error: Could not load fx "weapon/grenade/fx_gas_grenade_22sec".
Error: Could not load fx "weapon/rocket/fx_trail_bazooka_geotrail".
Error: Could not load fx "env/fire/fx_fire_player_sm_smk_2sec".
Error: Could not load rawfile "shock/zombie_death.shock".
Error: couldn't open 'shock/zombie_death.shock'.
Error: Could not load fx "treadfx/heli_dust_default".
Error: Could not load fx "treadfx/heli_water".
Error: Could not load fx "smoke/smoke_trail_white_heli".
Error: Could not load fx "smoke/smoke_trail_black_heli".
Error: Could not load fx "fire/fire_smoke_trail_L".
Error: Could not load fx "fire/jet_afterburner".
Error: Could not load fx "impacts/fx_water_hit_sm".
Error: Could not load fx "impacts/fx_water_hit_md".
Error: Could not load fx "impacts/fx_water_hit_lg".
Error: Could not load fx "impacts/fx_water_object_ripple".
Error: Could not load fx "vehicle/water/fx_wake_lvt_churn".
Error: Could not load fx "bio/player/fx_water_hit_player_bubbles".
Error: Could not load fx "bio/player/fx_player_water_waist_ripple".
Error: Could not load fx "bio/player/fx_player_water_knee_ripple".
LOADING...  - game media done
LOADING... clients
      dvar set r_warm_dpvs 1
Error: Could not load menufile "ui/scriptmenus/briefing.menu".
Error: Could not load menufile "ui/scriptmenus/loadout_splitscreen.menu".
      dvar set r_watersim_windDir 0
*** CLIENT SPAWN 0 script_brushmodels 0 script_models.
******* script runtime error *******
loadedfx could not find effect env/weather/fx_snow_blizzard_intense - ensure that effect is precached in the server script, and included in appropriate CSVs.
: (file 'clientscripts/retaken.csc', line 41)
 level._effect["snow_thick"] = LoadFx( "env/weather/fx_snow_blizzard_intense" );
                               *
Error: called from:
(file 'clientscripts/dlc3_code.csc', line 87)
  [[level.DLC3_Client.myFX]]();
                      *
Error: called from:
(file 'clientscripts/retaken.csc', line 20)
 clientscripts\dlc3_code::DLC3_FX();
 *
Error: started from:
(file 'clientscripts/retaken.csc', line 5)
main()
*
Error: ************************************
Error: Could not load material "terrain_scorch_bark".
Error: Could not load material "terrain_scorch_brick".
Error: Could not load material "terrain_scorch_carpet".
Error: Could not load material "terrain_scorch_cloth".
Error: Could not load material "terrain_scorch_concrete".
Error: Could not load material "terrain_scorch_dirt".
Error: Could not load material "terrain_scorch_flesh".
Error: Could not load material "terrain_scorch_foliage".
Error: Could not load material "terrain_scorch_glass".
Error: Could not load material "terrain_scorch_gravel".
Error: Could not load material "terrain_scorch_ice".
Error: Could not load material "terrain_scorch_metal".
Error: Could not load material "terrain_scorch_paper".
Error: Could not load material "terrain_scorch_plaster".
Error: Could not load material "terrain_scorch_rock".
Error: Could not load material "terrain_scorch_snow".
Error: Could not load material "terrain_scorch_water".
Error: Could not load material "terrain_scorch_wood".
Error: Could not load material "terrain_scorch_asphalt".
Error: Could not load material "terrain_scorch_ceramic".
Error: Could not load material "terrain_scorch_plastic".
Error: Could not load material "terrain_scorch_rubber".
Error: Could not load material "terrain_scorch_cushion".
Error: Could not load material "terrain_scorch_fruit".
Error: Could not load material "terrain_scorch_paintedmetal".
Error: Could not load material "terrain_scorch_player".
Error: Could not load material "terrain_scorch_tallgrass".
CL_InitCGame:  0.31 seconds
Com_TouchMemory: 0 msec. Using sum: 1058271410
      dvar set con_gameMsgWindow0Filter gamenotify obituary
      dvar set con_gameMsgWindow1Filter boldgame
      dvar set con_gameMsgWindow2Filter subtitle
      dvar set con_gameMsgWindow3Filter coopinfo
Hiding channel: gamenotify
Hiding channel: obituary
Adding channel: gamenotify
Adding channel: obituary
Hiding channel: boldgame
Adding channel: boldgame
Hiding channel: subtitle
Adding channel: subtitle
Hiding channel: coopinfo
Adding channel: coopinfo
Database: Assets Sync Started
Database: Assets Sync Finished
      dvar set cl_paused 0
      dvar set cl_network_warning 0
      dvar set r_lightTweakDiffuseFraction 0.3
      dvar set r_warm_dpvs 1
      dvar set com_voip_resume_time 57005
      dvar set cl_network_warning 0
      dvar set com_voip_resume_time 57006
      dvar set cl_network_warning 0
      dvar set sv_network_warning 0
Fade in 56507 1250
      dvar set compass 0
      dvar set hud_showStance 0
      dvar set cg_thirdPerson 0
      dvar set cg_fov 65
      dvar set cg_thirdPersonAngle 0
      dvar set ammoCounterHide 0
      dvar set miniscoreboardhide 0
      dvar set ui_hud_hardcore 0
MAX_SCENE_SURFS_SIZE(131072*2) exceeded - not drawing surface
Turn on developer 1. Turn on logfile 2. Launch map. Then post the error at the bottom of the logfile.txt in your mods folder.
Last Edit: November 11, 2015, 04:10:38 am by Elzy
Marked as best answer by Elzy 9 years ago
broken avatar :(
  • steviewonder87
  • Deleted Member
×
broken avatar :(
steviewonder87
This user is deleted :(
Code Snippet
Plaintext
MAX_SCENE_SURFS_SIZE(131072*2) exceeded - not drawing surface


As I suspected looking at the Radiant shot, this is the problem. You have waaaay too many foliage models in your map, you need to remove about 70% of them at least.
Last Edit: November 11, 2015, 04:17:19 am by steviewonder87
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
yup, i had that when i spammed trees on the outside of Castle B

 
Loading ...