Page 1 of 1
Kate Kitsune - Animal Slots
Posted: Wed Mar 27, 2013 12:11 pm
by kvothe
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?
Re: Kate Kitsune - Animal Slots
Posted: Wed Mar 27, 2013 9:23 pm
by Chala
I can only control one as well, i am used to controlling 2 as well though.
Re: Kate Kitsune - Animal Slots
Posted: Wed Mar 27, 2013 10:04 pm
by Agata
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
Re: Kate Kitsune - Animal Slots
Posted: Thu Mar 28, 2013 11:31 am
by Chala
so you would need 140 taming to control 2?