Re: Can anyone help with LE? [message #446180 is a reply to message #446137] |
Sun, 24 April 2011 16:57 |
|
zunnie
Messages: 2959 Registered: September 2003 Location: Netherlands
Karma:
|
General (2 Stars) |
|
|
You cant change the building h/a settings without saving it to a mapfile.
Saving it directly to objects.ddb doesnt work.
Other than that you can always use a script command to set the health type
I believe its something like
Set_Skin(obj,"blamo");
or something like that...
edit:
{
const char *skin;
skin = Get_Parameter("SkinType");
Set_Skin(obj,skin);
Commands->Set_Max_Health(obj,10000.0f);
Commands->Set_Health(obj,10000.0f);
}
[Updated on: Mon, 25 April 2011 00:37] Report message to a moderator
|
|
|