- Code cleaning, consolidation and bugfixing of special scrolls (powerscroll/statscroll/transcendence/alacrity).

--> Fixed a bug preventing SoT not being spawned in Malas champion spawns (i.e. Bedlam Crypt)
(http://www.uodemise.com/discussion/showthread.php?t=135520)

- Added contextual menu entries to add players in party, and kicking them from house (friends can be kicked if in ML environment). Timeout to accept party invite is increased to 30 seconds as per OSI
(http://www.uodemise.com/discussion/showthread.php?t=120724)

- Runebeetles can be angered during taming attempts
(http://www.uodemise.com/discussion/showthread.php?t=137677)

- You can cook near forges
(http://www.uodemise.com/discussion/showthread.php?t=137731)
This commit is contained in:
daedalus 2010-02-20 17:26:57 +00:00
parent bab1490105
commit fe6c18a2d4
14 changed files with 644 additions and 1047 deletions

View file

@ -64,7 +64,7 @@ namespace Server.Misc
// The new AOS bankboxes don't have powerscrolls, they are automatically 'applied':
for ( int i = 0; i < PowerScroll.Skills.Length; ++i )
for ( int i = 0; i < PowerScroll.Skills.Count; ++i )
m.Skills[PowerScroll.Skills[ i ]].Cap = 120.0;
m.StatCap = 250;
@ -532,7 +532,7 @@ namespace Server.Misc
{
Bag bag = new Bag();
for ( int i = 0; i < PowerScroll.Skills.Length; ++i )
for ( int i = 0; i < PowerScroll.Skills.Count; ++i )
bag.DropItem( new PowerScroll( PowerScroll.Skills[i], 120.0 ) );
bag.DropItem( new StatCapScroll( 250 ) );