I have seen it before and tried searching for it but can not find it >.< How do I change exprate? And why is this code not accepting DrunkCelestial o.0?
[code]
#region DrunkCelestial
case 722185:
{
if (DrunkCelestialUsedToday < 1)
{
if (Level < 137)
{
UseItem(DrunkCelestial, false);
RemoveItem(I);
DrunkCelestialUsedToday++;
}
}
else
MyClient.LocalMessage(2000, "You can only use 1 Beer in one day.");
break;
}
#endregion
Also why will this not take the stupid Dragonballs like it is supposed to do? Level 100 and below it should take one DB and level 100 and above it should take two dragonballs?
[code]
if (Control == 2)
{
if (GC.MyChar.InventoryContains(1088000, 1))
{
if (GC.MyChar.Level <= 100)
GC.MyChar.RemoveItem(GC.MyChar.NextItem(1088000));
GC.MyChar.AddItem(722185);
if (GC.MyChar.InventoryContains(1088000, 2))
{
if (GC.MyChar.Level >= 100)
GC.MyChar.RemoveItem(GC.MyChar.NextItem(108800));
}