RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[2.0] Rainbow horse

otimpyre

Sorceror
[2.0] Rainbow horse

Original author "Valdis" & script ->http://www.runuo.com/forums/showthread.php?t=69010

Updated code
Code:
public RainbowHorse( string name ) : base( name, 0xE2, 0x3EA0, AIType.AI_Animal, FightMode.[COLOR="red"]Aggressor[/COLOR], 10, 1, 0.2, 0.4 )
Once tamed it's color depends on what it is fed. here is a list.

Apple = Red
Lime = Green
Lemon = Yellow
Grapes = Light purple
Dates = Dark Purple
Pear = Light Green
Squash = Light Yellow
Cantaloupe = Blazing Yellow
Peach = Umm, Peach.
Cocnut = White
Banana = Greenish Yellow
Carrot = Blaze
Watermelon = Pink
Gold = Returns Horse to normal color
 

Attachments

  • RainbowHorse.rar
    1.2 KB · Views: 335

valdis

Wanderer
Fast update

Thanks for taking the time to update this script. Was going to sit down and update it this weekend... Very fast update. Thanks again.

+ Karma to you
 

otimpyre

Sorceror
Thank you

Thank you for creating it. :) Was an easy fix and I love the script. Any mobile with fightmode.agressor will have to be changed to fightmode.aggressor.
 

valdis

Wanderer
lol

otimpyre said:
Thank you for creating it. :) Was an easy fix and I love the script. Any mobile with fightmode.agressor will have to be changed to fightmode.aggressor.

Haven't even take'n the time to look at 2.0 yet. Nice to know that alot of my things can be fixed this way... Thanks again for the update.

Valdis
 

otimpyre

Sorceror
The first one

The first wouldn't work because fightmode.agressor must be fightmode.aggressor. Don't know how yours worked without fixing.:rolleyes:
 

valdis

Wanderer
Runuo 1.0

otimpyre said:
The first wouldn't work because fightmode.agressor must be fightmode.aggressor. Don't know how yours worked without fixing.:rolleyes:

The only way the first one worked is if he was running runuo 1.0 still. But just an FYI if you want to upgrade to runuo 2.0 you'll need to d/l this update. I will still support this upgrade as well..

Valdis
 
mine had fightmode Closest and worked in 2.0 just wanted to make sure about it thats all not tryin to hack on anyone, just letting you know that referance to closest works to
 

otimpyre

Sorceror
closest vs aggressor

No problem

But take a look at base creature fightmodes
Your horses are mean
The original scripted rainbow horse only attacks when provoked.

Your giving rainbows a bad name lol.

Code:
 public enum FightMode
 {
  None,   // Never focus on others
  [COLOR=seagreen]Aggressor,  // Only attack aggressors = Rainbow Horses
[/COLOR] Strongest,  // Attack the strongest
  Weakest,  // Attack the weakest
  [COLOR=seagreen]Closest,   // Attack the closest = Hells Angels[/COLOR]
  Evil   // Only attack aggressor -or- negative karma
 }

Could make any creature rainbow with any food type and fightmode tho.
 

valdis

Wanderer
Right

otimpyre said:
No problem

But take a look at base creature fightmodes
Your horses are mean
The original scripted rainbow horse only attacks when provoked.

Your giving rainbows a bad name lol.

Code:
 public enum FightMode
 {
  None,   // Never focus on others
  [COLOR=seagreen]Aggressor,  // Only attack aggressors = Rainbow Horses
[/COLOR] Strongest,  // Attack the strongest
  Weakest,  // Attack the weakest
  [COLOR=seagreen]Closest,   // Attack the closest = Hells Angels[/COLOR]
  Evil   // Only attack aggressor -or- negative karma
 }

Could make any creature rainbow with any food type and fightmode tho.

Right, the idea for them was that no one would know if they had a rainbow horse till after they try'd to change it's color... And anyways. It's just a horse, No need to make it attack people....
 
Top