Results 1 to 3 of 3

Thread: Princess Problem

  1. #1

    Default Princess Problem

    I recently tried to add princesses to some factions in the Third Age mod for M2TW, and the princesses exist and I can see them on the map, but for some bloody reason they can't move at all. Also, when a princess happens to spawn, THEY can't move either. So, they're stuck in cities and are pretty much useless.

    How can I fix this?

  2. #2

    Default Re: Princess Problem

    Are their action points in descr_character set to 0?

  3. #3
    Withwnar's Avatar Script To The Waist
    Join Date
    Oct 2008
    Location
    Earth
    Posts
    6,329

    Default Re: Princess Problem

    Yep...

    Code:
    type			princess
    
    actions			moving_normal
    ;actions			moving_normal, diplomacy, bribe, marry
    wage_base		0
    starting_action_points	0 ;120
    Change it to...

    Code:
    starting_action_points	120
    It might have been set to 0 by an early iteration of Palantiri development, no longer applicable.

    I guess the actions need uncommenting too...

    Code:
    type			princess
    
    actions			moving_normal
    actions			moving_normal, diplomacy, bribe, marry
    wage_base		0
    starting_action_points	120
    ...and wage_base set to something if that's normal for princesses (can't recall).
    Last edited by Withwnar; December 08, 2012 at 02:48 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •