Kate Kitsune - Animal Slots

Discussion about the WoD
Post Reply
kvothe
Upstanding
Upstanding
Posts: 34
Joined: Tue Mar 05, 2013 12:35 pm

Kate Kitsune - Animal Slots

Post by kvothe » Wed Mar 27, 2013 12:11 pm

Hi, yestarday walking in tokuno i found one animal old friend for me ... a Kate Kitsune - http://uo.stratics.com/database/view.ph ... rs&id=1435
And i percept can have only one in my control, different of other shards, its right ?
A hiryu ever was single one.
Great Dragon same ... its proportional of a how much strong is the Pet.


as is the world of dreams?

Chala
Commendable
Commendable
Posts: 368
Joined: Mon Jan 28, 2013 8:23 pm

Re: Kate Kitsune - Animal Slots

Post by Chala » Wed Mar 27, 2013 9:23 pm

I can only control one as well, i am used to controlling 2 as well though.

Agata
Developer
Posts: 715
Joined: Sun Sep 11, 2011 3:36 pm

Re: Kate Kitsune - Animal Slots

Post by Agata » Wed Mar 27, 2013 10:04 pm

You have "taming points" based on your Taming skill:

Code: Select all

		var mymaxpets := 5;
		if (GetAttribute (master, ATTRIBUTEID_TAMING) >= 98)
			mymaxpets := 9;
		elseif (GetAttribute (master, ATTRIBUTEID_TAMING) >= 78)
			mymaxpets := 7;
		endif
The Taming Value of a creature is defined either by a "tamingvalue" entry in the npc description, or in case it's not defined it checks for the Taming Difficulty:

Code: Select all

	//check to see if there's a default petvalue in the npcdesc elem
	var tamingvalue := CINT (mobelem.tamingvalue);
	if (tamingvalue)
		return tamingvalue;
	endif

	//no default petvalue in the npcdesc elem, calculate it
	var tameskill := CINT (mobelem.tameskill);
	if (!tameskill)
		return 7;
	endif

	if (tameskill <= 60)
		return 1;
	elseif (tameskill <= 70)
		return 2;
	elseif (tameskill <= 80)
		return 3;
	elseif (tameskill <= 90)
		return 4;
	elseif (tameskill <= 100)
		return 5;
	elseif (tameskill <= 110)
		return 6;
	else
		return 7;
	endif
I'm familiar with the acacia. I know how immortality is achieved.

Chala
Commendable
Commendable
Posts: 368
Joined: Mon Jan 28, 2013 8:23 pm

Re: Kate Kitsune - Animal Slots

Post by Chala » Thu Mar 28, 2013 11:31 am

so you would need 140 taming to control 2?

Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests