Runebooks
Posted: Mon Jan 12, 2009 7:35 am
All I'm asking for is one thing; increase the distance that players are allowed to open a runebook from.
I don't like it when I go up to a stack of runebooks and go to open one but nothing happens. Then I get one more tile closer and now I can't see the book! Just tedious. I'm sure more people than just me would like to see this added.
I know you know how to, +Colibri, but I thought I'd add it anyways.
"C:\...\Scripts\Items\Skill Items\Magical\Runebook.cs"
Go to line 307:
Just change it to something a little more convenient like 2 or 3:
I don't like it when I go up to a stack of runebooks and go to open one but nothing happens. Then I get one more tile closer and now I can't see the book! Just tedious. I'm sure more people than just me would like to see this added.
I know you know how to, +Colibri, but I thought I'd add it anyways.
"C:\...\Scripts\Items\Skill Items\Magical\Runebook.cs"
Go to line 307:
Code: Select all
public override void OnDoubleClick( Mobile from )
{
if ( from.InRange( GetWorldLocation(), 1 ) )
{
Code: Select all
public override void OnDoubleClick( Mobile from )
{
if ( from.InRange( GetWorldLocation(), 2 ) )
{