Jump to content

A:EftP - Tired of talking to Bela? And other mods


Recommended Posts

WARNING: This thread contains information about modifying your game files. If you modify your game, it may change in ways you don't expect or want. These modifications are not designed or supported by Spiderweb Software. Use at your own risk.

 

Okay, I finally got fed up with having to talk to Bela every single time I wanted to pass through the Bargha west gates. If you feel the same, there's an easy fix.

 

First, locate the scripts and find t53bargha.txt (always make a back-up copy before making changes, of course).

 

In the INIT_STATE, you will find this line:

sf(53,26,0);

 

Just comment it out by placing two slashes in front of it, like so:

// sf(53,26,0);

 

And you will only have to ask Bela to open the gate once.

 

You're welcome.

Edited by Lilith
added warning
Link to comment
Share on other sites

Okay, here's another. If you want to make wands stackable, open up avitemschars.txt and find this:

// wands
begindefineitem 97;
// Imported for all wands
import = 0;
it_name = "Fiery Wand";
it_graphic_template = 50;
it_graphic_sheet = 8;
it_which_icon_ground = 0;
it_which_icon_inven = 1;
it_variety = 15;
it_weight = 30;
it_ability = 97;
it_value = 30;
it_level = 15;
it_charges = 6;
it_extra_description = -1;

Change the item variety from 15 to 9, like so:

// wands
begindefineitem 97;
// Imported for all wands
import = 0;
it_name = "Fiery Wand";
it_graphic_template = 50;
it_graphic_sheet = 8;
it_which_icon_ground = 0;
it_which_icon_inven = 1;
// it_variety = 15;
it_variety = 9;
it_weight = 30;
it_ability = 97;
it_value = 30;
it_level = 15;
it_charges = 6;
it_extra_description = -1;

 

Now your wands can be stacked and split, just like crystals, potions and scrolls.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...