|
||
|
|||||||
| Script Support Get support for modifying RunUO Scripts, or writing your own! |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Novice
Join Date: Apr 2007
Posts: 259
|
i cant find a thread like this, maybe its somewhere in the archives.
where can i delete the appearance of neon weapons, so they dont drop on monsters no more also, where can i get the fix for ML Primary Attacks such as force arrow serpent arrow psychic attack -- ALSO, why does it take like .5 seconds or 1 second to turn a page in the spellbook, normal book, etc. it never turned so slow before
__________________
UO Armageddon - now looking for players!.. [new site under const] Last edited by Grom09; 07-02-2009 at 09:44 PM. |
|
|
|
|
|
#2 (permalink) | |
|
Forum Novice
Join Date: Nov 2008
Age: 23
Posts: 149
|
Quote:
Code:
public int GetElementalDamageHue()
{
int phys, fire, cold, pois, nrgy;
GetDamageTypes( null, out phys, out fire, out cold, out pois, out nrgy );
//Order is Cold, Energy, Fire, Poison, Physical left
int currentMax = 50;
int hue = 0;
if( pois >= currentMax )
{
hue = 1267 + (pois - 50) / 10;
currentMax = pois;
}
if( fire >= currentMax )
{
hue = 1255 + (fire - 50) / 10;
currentMax = fire;
}
if( nrgy >= currentMax )
{
hue = 1273 + (nrgy - 50) / 10;
currentMax = nrgy;
}
if( cold >= currentMax )
{
hue = 1261 + (cold - 50) / 10;
currentMax = cold;
}
return hue;
}
|
|
|
|
|
|
|
#4 (permalink) |
|
Forum Novice
Join Date: Apr 2007
Posts: 259
|
thanks,
its just for the ML primary attacks, you double click and does nothing. so i dont know if someone made them, or updated in most recent svn, orrr i should just make it myself. Its not hard to make, so i can make it.. but i just wanted to know so i know what direction to go. thanks for answers
__________________
UO Armageddon - now looking for players!.. [new site under const] |
|
|
|
|
|
#5 (permalink) | |
|
Forum Novice
Join Date: Nov 2008
Age: 23
Posts: 149
|
Quote:
|
|
|
|
|
|
|
#6 (permalink) | |
|
Forum Novice
Join Date: Aug 2006
Posts: 145
|
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|