gpang788的最近内容

  1. gpang788

    Warband - Where to download online?

    Faranox 说:
    There are plenty of websites offering Warband, but TW still hasn't gotten around to it.  :sad:
    I await their purchase link!

    Do they offer the download version or the cd version?
  2. gpang788

    Warband - Where to download online?

    SO..30/03 is today :D Finally  :D As I am too impatient to wait for a store release, where can I download warband from? Been to the downloads section of the taleworlds site, dun see warband there? No option to purchase and download online?
  3. gpang788

    Question: How to make words appear smaller?

    Moderators please dont flame me. Searched for this but couldnt find it anywhere. When in battle, how do u make words appear smaller on the screen ?? i.e. those words that appear on the left when someone has been killed..
  4. gpang788

    Chinese Paintings

    Nice anymore?? Esp love the 2nd one!!
  5. gpang788

    Removing bow-aiming sight

    BTW, cant open .dds files in photoshop also
  6. gpang788

    Removing bow-aiming sight

    When can I find disable-crosshair? Tried looking for it under options but nothing?

    Is there a file I can tweak?
  7. gpang788

    OSP Kit Combat Combat Abilities

    Nope it doesnt. Still not getting anything when I press the "u" key in battle?
  8. gpang788

    Removing bow-aiming sight

    How do I remove the bow sight to make it more realistic?
  9. gpang788

    OSP Kit Combat Combat Abilities

    Have implemented the above script. Things seem to have improved but am still getting some errors:

    Initializing...
    Compiling all global variables...
    Exporting strings...
    Exporting skills...
    Exporting tracks...
    Exporting animations...
    Exporting meshes...
    Exporting sounds...
    Exporting skins...
    Exporting map icons...
    Creating new tag_uses.txt file...
    Creating new quick_strings.txt file...
    Exporting faction data...
    Exporting item data...
    Exporting scene data...
    Exporting troops data
    Exporting particle data...
    Exporting scene props...
    Exporting tableau materials data...
    Exporting presentations...
    Exporting party_template data...
    Exporting parties
    Exporting quest data...
    Exporting scripts...
    Exporting mission_template data...
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    WARNING: Local variable never used: player_agent
    Exporting game menus data...
    exporting simple triggers...
    exporting triggers...
    exporting dialogs...
    Checking global variable usages...

    ______________________________

    Script processing has ended.
    Press any key to exit. . .

    What else do I need to add ?
  10. gpang788

    Faction name?

    How do I change the name of a kingdom that I have conquered?

    Cos  i dun see the name in either the txt or py file? Only see names of other factions other than my own?

  11. gpang788

    OSP Kit Combat Combat Abilities

    No I did not. Where can I find the xp penalty script?
  12. gpang788

    OSP Kit Combat Combat Abilities

    Sorry mistake with the above errors. Should be

    Initializing...
    Compiling all global variables...
    Exporting strings...
    Exporting skills...
    Exporting tracks...
    Exporting animations...
    Exporting meshes...
    Exporting sounds...
    Exporting skins...
    Exporting map icons...
    Creating new tag_uses.txt file...
    Creating new quick_strings.txt file...
    Exporting faction data...
    Exporting item data...
    Exporting scene data...
    Exporting troops data
    Exporting particle data...
    Exporting scene props...
    Exporting tableau materials data...
    Exporting presentations...
    Exporting party_template data...
    Exporting parties
    Exporting quest data...
    Exporting scripts...
    Exporting mission_template data...
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Exporting game menus data...
    exporting simple triggers...
    exporting triggers...
    exporting dialogs...
    Checking global variable usages...

    ______________________________

    Script processing has ended.
    Press any key to exit. . .


    Took the code straight from the beginning of this thread.

    It  goes like this:

    # battlecry

        (0, 0, 60, [(key_clicked, key_u),(store_attribute_level,"$attribute","trp_player",3),(neg|main_hero_fallen),
        (play_sound,"snd_man_warcry"),
        ], [
    (get_player_agent_no, ":player_agent"),
    (try_begin),
          (agent_get_class ,":blah", ":player_agent"),
          (neq,":blah",grc_cavalry),
            (agent_set_animation, ":player_agent", "anim_cheer"),
          (try_end),
            ]), 
        (0, 2, 60, [(key_clicked, key_u),(store_attribute_level,"$attribute","trp_player",3),(neg|main_hero_fallen),
     
        (get_player_agent_no, ":player_agent")
        ], [

      (store_skill_level,":leadership","skl_leadership","trp_player"),
        (get_player_agent_no, ":player_agent"),
      (store_sub,":cha_bonus","$attribute",0),
      (val_mul,":leadership",3),
      (try_for_agents,":agent"),
     

            (agent_is_alive,":agent"),
            (agent_is_human,":agent"),
          (agent_is_ally,":agent"),
          (neg|eq,":agent",":player_agent"),
          (store_agent_hit_points,":life",":agent",0),
          (try_begin),
          (agent_get_class ,":blah", ":agent"),
          (neq,":blah",grc_cavalry),
            (agent_set_animation, ":agent", "anim_cheer"),
          (try_end),
         
      (val_add,":life",":cha_bonus"),
      (val_add,":life",":leadership"),
      (agent_set_hit_points,":agent",":life",0),     
      #(agent_get_horse,":horse",":agent"),
      (agent_play_sound, ":agent", "snd_man_victory"),
            #(agent_set_animation, ":agent", "anim_cheer"),
          (try_end),
          (store_add,":recovery",":leadership",":cha_bonus"),
          (assign,reg1,":recovery"),
    (display_message,"@You rally your men! (wounded troops recover {reg1} % hitpoints)",0x6495ed),     
      (call_script, "script_rage_exp_penalty"), 
            ]),

    Seems to be looking for "script_rage_exp_penalty"

    What did I do wrong?
  13. gpang788

    OSP Kit Combat Combat Abilities

    Help I implemented your "Warcry" script and am  getting these errors

    ERROR: Illegal Identifier:itm_charm_b
    Error: Unable to find object:script_fear
    ERROR: Illegal Identifier:script_fear
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_healer_run_ally
    ERROR: Illegal Identifier:script_healer_run_ally
    Error: Unable to find object:script_healer_heal_ally
    ERROR: Illegal Identifier:script_healer_heal_ally
    Error: Unable to find object:script_healer_run_enemy
    ERROR: Illegal Identifier:script_healer_run_enemy
    Error: Unable to find object:script_healer_heal_enemy
    ERROR: Illegal Identifier:script_healer_heal_enemy
    Error: Unable to find object:script_squads_enemy
    ERROR: Illegal Identifier:script_squads_enemy
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_squads_ally
    ERROR: Illegal Identifier:script_squads_ally
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_dmod_cycle_forwards
    ERROR: Illegal Identifier:script_dmod_cycle_forwards
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_hero_exp_penalty
    ERROR: Illegal Identifier:script_hero_exp_penalty
    Error: Unable to find object:script_herofallen
    ERROR: Illegal Identifier:script_herofallen
    Error: Unable to find object:itm_charm_a
    ERROR: Illegal Identifier:itm_charm_a
    Error: Unable to find object:itm_charm_b
    ERROR: Illegal Identifier:itm_charm_b
    Error: Unable to find object:script_fear
    ERROR: Illegal Identifier:script_fear
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_healer_run_ally
    ERROR: Illegal Identifier:script_healer_run_ally
    Error: Unable to find object:script_healer_heal_ally
    ERROR: Illegal Identifier:script_healer_heal_ally
    Error: Unable to find object:script_healer_run_enemy
    ERROR: Illegal Identifier:script_healer_run_enemy
    Error: Unable to find object:script_healer_heal_enemy
    ERROR: Illegal Identifier:script_healer_heal_enemy
    Error: Unable to find object:script_squads_enemy
    ERROR: Illegal Identifier:script_squads_enemy
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_squads_ally
    ERROR: Illegal Identifier:script_squads_ally
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_dmod_cycle_forwards
    ERROR: Illegal Identifier:script_dmod_cycle_forwards
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_hero_exp_penalty
    ERROR: Illegal Identifier:script_hero_exp_penalty
    Error: Unable to find object:script_herofallen
    ERROR: Illegal Identifier:script_herofallen
    Error: Unable to find object:itm_charm_a
    ERROR: Illegal Identifier:itm_charm_a
    Error: Unable to find object:itm_charm_b
    ERROR: Illegal Identifier:itm_charm_b
    Error: Unable to find object:script_fear
    ERROR: Illegal Identifier:script_fear
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_healer_run_ally
    ERROR: Illegal Identifier:script_healer_run_ally
    Error: Unable to find object:script_healer_heal_ally
    ERROR: Illegal Identifier:script_healer_heal_ally
    Error: Unable to find object:script_healer_run_enemy
    ERROR: Illegal Identifier:script_healer_run_enemy
    Error: Unable to find object:script_healer_heal_enemy
    ERROR: Illegal Identifier:script_healer_heal_enemy
    Error: Unable to find object:script_squads_enemy
    ERROR: Illegal Identifier:script_squads_enemy
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_squads_ally
    ERROR: Illegal Identifier:script_squads_ally
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_dmod_cycle_forwards
    ERROR: Illegal Identifier:script_dmod_cycle_forwards
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_hero_exp_penalty
    ERROR: Illegal Identifier:script_hero_exp_penalty
    Error: Unable to find object:script_herofallen
    ERROR: Illegal Identifier:script_herofallen
    Error: Unable to find object:itm_charm_a
    ERROR: Illegal Identifier:itm_charm_a
    Error: Unable to find object:itm_charm_b
    ERROR: Illegal Identifier:itm_charm_b
    Error: Unable to find object:script_fear
    ERROR: Illegal Identifier:script_fear
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_healer_run_ally
    ERROR: Illegal Identifier:script_healer_run_ally
    Error: Unable to find object:script_healer_heal_ally
    ERROR: Illegal Identifier:script_healer_heal_ally
    Error: Unable to find object:script_healer_run_enemy
    ERROR: Illegal Identifier:script_healer_run_enemy
    Error: Unable to find object:script_healer_heal_enemy
    ERROR: Illegal Identifier:script_healer_heal_enemy
    Error: Unable to find object:script_squads_enemy
    ERROR: Illegal Identifier:script_squads_enemy
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_squads_ally
    ERROR: Illegal Identifier:script_squads_ally
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_dmod_cycle_forwards
    ERROR: Illegal Identifier:script_dmod_cycle_forwards
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_hero_exp_penalty
    ERROR: Illegal Identifier:script_hero_exp_penalty
    Error: Unable to find object:script_herofallen
    ERROR: Illegal Identifier:script_herofallen
    Error: Unable to find object:itm_charm_a
    ERROR: Illegal Identifier:itm_charm_a
    Error: Unable to find object:itm_charm_b
    ERROR: Illegal Identifier:itm_charm_b
    Error: Unable to find object:script_fear
    ERROR: Illegal Identifier:script_fear
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_healer_run_ally
    ERROR: Illegal Identifier:script_healer_run_ally
    Error: Unable to find object:script_healer_heal_ally
    ERROR: Illegal Identifier:script_healer_heal_ally
    Error: Unable to find object:script_healer_run_enemy
    ERROR: Illegal Identifier:script_healer_run_enemy
    Error: Unable to find object:script_healer_heal_enemy
    ERROR: Illegal Identifier:script_healer_heal_enemy
    Error: Unable to find object:script_squads_enemy
    ERROR: Illegal Identifier:script_squads_enemy
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_squads_ally
    ERROR: Illegal Identifier:script_squads_ally
    Error: Unable to find object:script_squads_clear
    ERROR: Illegal Identifier:script_squads_clear
    Error: Unable to find object:script_dmod_cycle_forwards
    ERROR: Illegal Identifier:script_dmod_cycle_forwards
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    WARNING: Local variable never used: player_agent
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_rage_exp_penalty
    ERROR: Illegal Identifier:script_rage_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_sprint_exp_penalty
    ERROR: Illegal Identifier:script_sprint_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Error: Unable to find object:script_focus_exp_penalty
    ERROR: Illegal Identifier:script_focus_exp_penalty
    Exporting game menus data...
    exporting simple triggers...
    exporting triggers...
    exporting dialogs...
    Checking global variable usages...
    WARNING: Global variable never used: new_kills

    ______________________________

    Script processing has ended.
    Press any key to exit. . .

    What does it mean?
  14. gpang788

    Increasing Arrows, Power draw - How?

    Works guys!

    1 last question. How do I use a shield in conjunction with weapons that cannot be used with a shield? e.g. glaive?
    Also, if the "arms" column in my inventory has already been filled out, how do I add in shield without removing any weapons?

    Thanks
后退
顶部 底部