[Help] Same taming item for several PETs

LipESprY

New member
Messages
9
Points
0
Hi guys!

I want to use one item to capture several monster and I have the monster's egg working fine, but the taming item isn't working...

I tried this, but not working:

Code:
{
	Id: 31700
	AegisName: "Super_Taming_Item"
	Name: "Super_Taming_Item"
	Type: "IT_USABLE"
	Buy: 350
	Weight: 50
	BuyingStore: true
	Nouse: {
		sitting: false
	}
	Script: <" pet IFRIT; pet KIEL_, pet TAO_GUNKA; ">
}
It captures only the mob TAO_GUNKA (The last mob defined on script).

I tried to use the Sage's skill for monster capture, like Abracadabra:

Code:
{
	Id: 31700
	AegisName: "Super_Taming_Item"
	Name: "Super_Taming_Item"
	Type: "IT_USABLE"
	Buy: 350
	Weight: 50
	BuyingStore: true
	Nouse: {
		sitting: false
	}
	Script: <" itemskill "SA_TAMINGMONSTER",1; ">
}
But nothing happens when I click on the monster with the skill's target.

I created 34 monster's egg, and I no want to create 34 differents taming itens...

I'll apreciate any idea!

Thank you, so mutch and sorry for my bad english. xD

 
{
Id: 31700
AegisName: "Super_Taming_Item"
Name: "Super_Taming_Item"
Type: "IT_DELAYCONSUME"
Buy: 350
Weight: 50
BuyingStore: true
Script: <" itemskill("SA_TAMINGMONSTER", 1);">
}


You need IT_DELAYCONSUME not IT_USEABLE (Type 11 instead of 2)

Be aware: this items is useable on ANY mob. On those which are not tameable it's still going to be consumed.

 
Last edited by a moderator:
{
Id: 31700
AegisName: "Super_Taming_Item"
Name: "Super_Taming_Item"
Type: "IT_DELAYCONSUME"
Buy: 350
Weight: 50
BuyingStore: true
Script: <" itemskill("SA_TAMINGMONSTER", 1);">
}


You need IT_DELAYCONSUME not IT_USEABLE (Type 11 instead of 2)

Be aware: this items is useable on ANY mob. On those which are not tameable it's still going to be consumed.
It worked! Thank you, very much! 

 
Back
Top