Pet Breeding

We try to put in new spawn areas, quests, events, items and scripts. This is where you submit your wish.
Locked
User avatar
Devlin
Legendary Scribe
Posts: 652
Joined: Thu Mar 18, 2010 12:50 pm

Pet Breeding

Post by Devlin »

Any chance we could see a small change in the messages received while training a pet? There are two lines
"Your pet's level has increased to x."
"Your pet "name" has gained y ability points."

Any chance the first line could be changed to "Your pet {INSERT NAME HERE} has increased to level x" or something similar, with the emphasis on including the name of the pet in both lines?

While training multiple pets it can be difficult to discern just exactly which pet has reached a certain level as messages tend to overlap with one another. I stop training pets at level 40 and sometimes cannot tell which pet has hit my level cap as I must check the next line after to figure out its name. When the messages appear out of order it can make it annoying to figure out which pet I need to pull to avoid it becoming sterile at level 43.

If this is something easily edited it would be greatly appreciated.
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Separate Journal for Guild or Public Chat (Old)
---------------------------------------------
Combat Focus Guide (Godmode Formula)
User avatar
Devlin
Legendary Scribe
Posts: 652
Joined: Thu Mar 18, 2010 12:50 pm

Re: Pet Breeding

Post by Devlin »

Or just merge both lines to
"your pet {NAME} has gained x ability points and reached level y."?
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Separate Journal for Guild or Public Chat (Old)
---------------------------------------------
Combat Focus Guide (Godmode Formula)
User avatar
Devlin
Legendary Scribe
Posts: 652
Joined: Thu Mar 18, 2010 12:50 pm

Re: Pet Breeding

Post by Devlin »

Not sure if I have any idea what I'm doing. I believe we're using the FS ATS pet/bio system.
These are the two lines that inform the user that the pet has leveled up and gained ability points.

Code: Select all

cm.SendMessage( 38, "Your pets level has increased to {0}.", attacker.Level )

attacker.ControlMaster.SendMessage( 38, "Your pet {0} has gained some ability points.", gain )
Is it possible to simply merge them like this?

Code: Select all

cm.SendMessage( 38, "Your pet {0} is now level {1} and has gained {2} ability points.", pet.Name, attack.Level, gain)
assuming that attack.level is the new level of the pet, gain is the ability points gained per level, and pet.name is... the pets name. (or attacker.name/attacker.level, whatever the variables are)

Also, why don't we have rideable energy elementals? :P
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Separate Journal for Guild or Public Chat (Old)
---------------------------------------------
Combat Focus Guide (Godmode Formula)
User avatar
Gaara
Legendary Scribe
Posts: 890
Joined: Sun Sep 23, 2012 10:43 pm
Location: Sedona, AZ, USA

Re: Pet Breeding

Post by Gaara »

Devlin wrote:Not sure if I have any idea what I'm doing. I believe we're using the FS ATS pet/bio system.
These are the two lines that inform the user that the pet has leveled up and gained ability points.

Code: Select all

cm.SendMessage( 38, "Your pets level has increased to {0}.", attacker.Level )

attacker.ControlMaster.SendMessage( 38, "Your pet {0} has gained some ability points.", gain )
Is it possible to simply merge them like this?

Code: Select all

cm.SendMessage( 38, "Your pet {0} is now level {1} and has gained {2} ability points.", pet.Name, attack.Level, gain)
assuming that attack.level is the new level of the pet, gain is the ability points gained per level, and pet.name is... the pets name. (or attacker.name/attacker.level, whatever the variables are)

Also, why don't we have rideable energy elementals? :P
Waiting for ridable sand vortex :lookingout:
Image
User avatar
Devlin
Legendary Scribe
Posts: 652
Joined: Thu Mar 18, 2010 12:50 pm

Re: Pet Breeding

Post by Devlin »

bump.
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Separate Journal for Guild or Public Chat (Old)
---------------------------------------------
Combat Focus Guide (Godmode Formula)
Locked