Use item type 11 while sitting?

Helena

New member
Messages
238
Points
0
Emulator
rAthena
Hello Hercules!

I was wondering if anyone could help me with this. I am using item type 11 for an item that i want to be non-consumable, but I can't use it while sitting. 

While browsing I've learned that item type 11 was made for certain scrolls that require a target so it possibly has a good reason why it doesn't function while sitting. Nevertheless, I'd like to find a way to make it work. 

This is what I got so far:

Code:
{	Id: 501	AegisName: "Red_Potion"	Name: "Red Potion"	Type: 11	Buy: 10	Trade: {		override: 60		nodrop: true		notrade: true		noselltonpc: true		nomail: true		noauction: true	}	Nouse: {		sitting: false	}	Script: <" itemheal rand(1000,200),0; ">},
 
(I've also removed the sitting label but it made no difference).
 
If this needs to be adjusted in the source instead of the db, please point me in the right direction. Thank you!
default_smile.png

 
try this , hope it work
default_smile.png


{
  Id: 501
  AegisName: "Red_Potion"
  Name: "Red Potion"
  Type: 0
  Buy: 10

  KeepAfterUse: true
  Trade: {
  override: 60
  nodrop: true
  notrade: true
  noselltonpc: true
  nomail: true
  noauction: true
  }
  Script: <" itemheal rand(1000,200),0; ">
},

 
try this , hope it work
default_smile.png


{

  Id: 501

  AegisName: "Red_Potion"

  Name: "Red Potion"

  Type: 0

  Buy: 10

  KeepAfterUse: true

  Trade: {

  override: 60

  nodrop: true

  notrade: true

  noselltonpc: true

  nomail: true

  noauction: true

  }

  Script: <" itemheal rand(1000,200),0; ">

},
Thanks omg you're the best!
default_smile.png


 
Back
Top