Skip to content

Instantly share code, notes, and snippets.

@neo-mat
Created February 17, 2012 21:21
Show Gist options
  • Save neo-mat/1855529 to your computer and use it in GitHub Desktop.
Save neo-mat/1855529 to your computer and use it in GitHub Desktop.
Brackets
bool BendingShinbone(uint32 i, Spell *pSpell)
{
if(pSpell->p_caster)
{
if(RandomUInt(100) < 17) // 17% chance
pSpell->p_caster->GetItemInterface()->AddItemById(ITEM_STURDYSHINBONE, 1, 0); // Sturdy Dragon
else
pSpell->p_caster->GetItemInterface()->AddItemById(ITEM_BROKENSHINBONE, 1, 0);
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment