forums | blogs | polls | tutorials | downloads | rules | help

Error message

Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in remember_me_form_alter() (line 78 of /var/www/siegetheday.org/sites/all/modules/contrib/remember_me/remember_me.module).

Someone pls make simple mod:

Hi, can someone make a mod/addon that removes the hat/helmet appear at my character for both DG2 and DG2BW? :? I mean, not REMOVE the helmet, just make it disappear so I can see my char's beatiful hair! Wink I don't know if it's even possible, but I really hope so! Laughing out loud
Btw, can anyone tell me when in the game I can have 3, 4, 5 and 6 characters?

Sry if my English is a bit bad! :roll:

Well, I'm no pro at anything with DS2, but I'd say that you get more characters when you beat the game on more experience levels.

Anonymous wrote:
Well, I'm no pro at anything with DS2, but I'd say that you get more characters when you beat the game on more experience levels.

Yeah tnx, but I already knew that! Wink I wonder WHEN in the game, is it like act III in Mercanery or? :S

h00cH wrote:
Hi, can someone make a mod/addon that removes the hat/helmet appear at my character for both DG2 and DG2BW? :? I mean, not REMOVE the helmet, just make it disappear so I can see my char's beatiful hair! Wink I don't know if it's even possible, but I really hope so! Laughing out loud
Btw, can anyone tell me when in the game I can have 3, 4, 5 and 6 characters?

Sry if my English is a bit bad! :roll:

all characters can be bought from the inns, like 3 is 500 gold, 4 is 1500 gold and 5 is available for veteran, and 6 is available for elite... there are mods out that allow 6 characters in merc mode however if ya want to go that route....

as for the helmet being invisible, it can be done, but im not sure i want to invest the time in it... maybe someone else will...

Sharkull's picture

I don't have the time to do this, but wouldn't it just be a matter of taking the mesh for the head type you want to preserve, and copying it enough times, setting the copies' names to override the helm meshes? I think you'd be restricted to one head type per race/gender combination this way (eg. Deru and Taar would have the same in-game hair style...), but if it worked it would probably be easier / faster than modifying every helm template in the game :hypno: (if that could even work... "armor_type = head-01;" :?: ).

I do not see a way to get the texture to be dynamic( I get no textures heh). I could only get the mesh to be. It expects a head to swap and havn't found a way around that. Also, according to amr_base.gas armor_type(the mesh referred to) is included in the defense formula Sad . GPG took a shortcut on the helmets big time and modding was never designed for ds2 obviously. Not really GPG's fault they were probably pressed for time. I'm just happy the game is moddable.

Edit: Well, here is my last atempt with same results. Normal head mesh no texture Sad . I was also able to get it to work with an aspect block with defend stuff there so it can calculate it in the formula(if it even does), unless I am mistaken.

[t:template,n:amr_hlm_cmg_apprentice]
{
	doc = "apprentice_helm";
	specializes = base_helm_cmage;


	[common]
	{
		screen_name = "Apprentice Hood";
	}
	[defend]
	{
		armor_style = none;
		armor_type = none;
	}
	[gui]
	{
		inventory_icon = b_gui_ig_i_amr_hlmt_type01_04;
		inventory_height = 2;
		inventory_width = 2;
		equip_requirements = combat magic:#item_level-2.0;
	}
	[pcontent]
	{
		[base]
		{
			item_level = 4.0;
		}
		[var1]
		{
			item_level = 10.0;
		}
		[var2]
		{
			item_level = 19.0;
		}
		[var3]
		{
			item_level = 34.0;
		}
		[var4]
		{
			item_level = 46.0;
		}
	}
}