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

Inscription plugin

BPAlpha

New Member
Joined
Jan 15, 2010
Messages
594
Reaction score
41
hey guy..

been trying to perfect my inscription plugin for 2 days now..
got milling working fine, for ink making working and vendor work but it will not make darkmoon cards and dont know why.. can some one take a look and see what im missing :)
 

Attachments

Have you tried just using

Code:
Styx.Logic.Combat.SpellManager.Cast("Darkmoon Card of the North");
?
 
spell is cast from id so name should not really matter
 
Just asking for debug purposes, if it doesn't work one way try another.
 
got darkmoon to work now but vendor now bugged
just keeps buying paper
here code im using sure its right but not sure

Code:
int index = 6;
int quantity = 1;
Logging.Write("Buying {0}", ItemInfo[0].ToString());
Lua.DoString("BuyMerchantItem(\"" + index,quantity + "\")");
 
Back
Top