RGL error!

Users who are viewing this thread

jamesnoob

Recruit
sorry if this exist but

I try to create an object

and when I talk to the companion where i put the weapon a
nd I click let me see you inventory, it said

RGL error

unable to find new_sword_mesh_brf

look at my Resource folder

try.jpg


and heres the codes in

module_items.py

Code:
["james_sword","Pincers", [("new_sword_mesh_brf",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_wooden_parry|itp_wooden_attack, itc_longsword, 3,weight(1.5)|spd_rtng(103)|weapon_length(90)|swing_damage(16,blunt)|thrust_damage(10,blunt),imodbits_none],
 ["heavy_practice_sword","Heavy Practice Sword", [("heavy_practicesword",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_greatsword,
    21, weight(6.25)|spd_rtng(94)|weapon_length(128)|swing_damage(26,blunt)|thrust_damage(18,blunt),imodbits_none],

and


module_troops.py


Code:
["npc17","Geoffrey","Geoffrey", tf_hero|tf_unmoveable_in_party_window, scn_town_6_tavern|entry(1),reserved, fac_commoners,[itm_courtly_outfit,itm_james_sword,itm_new_mace],
   str_7|agi_7|int_11|cha_6|level(1),wp(40),knows_merchant_npc|
   knows_trade_2|knows_weapon_master_1|knows_ironflesh_1|knows_wound_treatment_1|knows_athletics_2|knows_first_aid_1|knows_leadership_1,
   0x000000019d004001570b893712c8d28d00000000001dc8990000000000000000],
 
Open new_sword_mesh_brf.brf in BRF Edit and look at the mesh name in there. That is the one you must add to module_items.py

Oh and add this to module.ini
load_mod_resource = new_sword_mesh_brf
 
cdvader said:
Open new_sword_mesh_brf.brf in BRF Edit and look at the mesh name in there. That is the one you must add to module_items.py

Oh and add this to module.ini
load_mod_resource = new_sword_mesh_brf

Thanks! It works!
 
Back
Top Bottom