What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

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!

Having issues where one race will try to train at another races trainer

cgw-1991

New Member
Joined
Jun 11, 2011
Messages
150
Ok, so I'm having an issue where the my dwarf priest is attemting to use the worgnen priest trainer cause of the profile even though the thing is only in the worgan quest area. Here is what I have: <Vendor Name="Sister Almyra" Entry="36632" Type="Train" TrainClass="Priest" X="-1895.778" Y="2306.538" Z="44.17108" />

is their a way to make it so you have to be worgan to train at her?
 
Right, but what do I change?
like do I need to add a if race function to the trainer or how would i go about stoping that from happening.
 
you click the 'new' trainer

click target info - copy and paste that over the 'old' info

change:
Type="Repair"

to:
Type="Train" TrainClass="Priest"
 
Ok, let me be more specific, My dwarf priest is trying to train at a worgan trainer, But it cant train their for 2 reasons, 1 its not a worgan, and 2 you have to be in the correct phase to train from her. when going to do a quest it goes near the worgan area, and as such attempts to train at her, but as I said they cant train cause their not the same race, and in different phases. What can I do to prevent any other race from training at the worgan priest, meaning only worgan can train their.

In lamens terms kickazz I cant train because of the fact that their not in the same phase and as such cant set a hot spot or x y z coordinate for that trainer, because it is practicly non-existant.

In addition to make things more clear here is an example

http://www.wowhead.com/npc=38466/sister-almyra#.

go through the phases to see what i mean
 
Last edited:
Ok, I have already done that, But i asked how to fix it not how to temporarly stop the problem.
Can someone please direct me to a place I can learn to fix it, or explain to me how to do so?
 
Last edited:
nvm, you didn't read what I said about the phase change and how they cant interact with each other. Please just close the thread thanks anyways.
 
disable training and then force set vendor - trainer after you're phased in - and then set training
 
ahh ok, thats much more detailed thanks, and plus rep
From my ally profile - these are actually in a if condition me.level &lt; 5 bracket because they only offer spells to like level 6
PHP:
		<SetVendor>
			<Vendors>
				<!-- Northshire Trainers-->
				<Vendor Name="Khelden Bremen" Entry="198" Type="Train" TrainClass="Mage" X="-8851.57" Y="-188.234" Z="89.31455" />
				<Vendor Name="Priestess Anetta" Entry="375" Type="Train" TrainClass="Priest" X="-8853.587" Y="-193.336" Z="81.9331" />
				<Vendor Name="Drusilla La Salle" Entry="459" Type="Train" TrainClass="Warlock" X="-8926.743" Y="-195.5889" Z="80.58859" />
				<Vendor Name="Jorik Kerridan" Entry="915" Type="Train" TrainClass="Rogue" X="-8863.468" Y="-210.9055" Z="80.57187" />
				<Vendor Name="Brother Sammuel" Entry="925" Type="Train" TrainClass="Paladin" X="-8914.567" Y="-215.0163" Z="82.11676" />
				<Vendor Name="Llane Beshere" Entry="911" Type="Train" TrainClass="Warrior" X="-8918.364" Y="-208.4109" Z="82.12556" />
				<Vendor Name="Ashley Blank" Entry="43278" Type="Train" TrainClass="Hunter" X="-8924.651" Y="-149.9028" Z="81.36338" />
			</Vendors>
		</SetVendor>

This now probably has the quest Id optional if you need it (cj made a lot of the behaviors more user friendly)
PHP:
					<CustomBehavior File="ForceTrain" QuestId="26913" ForceTrain="1"/>

This is my default syntax for the UserSettings behavior - you only need 'train new skills' - if you want. but you can also just force it to train
PHP:
	<CustomBehavior File="UserSettings" LootMobs="True" TrainNewSkills="True" LearnFlightPaths="True" UseFlightPaths="True" />

now, i think there is also a <clearvendors /> function - but i dunno if it works properly or not
 
Last edited:
Back
Top