Search results

  1. B

    Summon Stickers and Snowcones

    Thanks for the info. I was hoping to avoid having to do a item lookup in this script so I only hit the item table when I'm actually creating the items (though, what do I know, maybe mafia implements these commands such that they use the local item cache information). I may have to mess with the...
  2. B

    Summon Stickers and Snowcones

    First, let me share with you my script. void tomeSummon(){ if(in_hardcore()) return; int stickCasts = random(4); boolean didCast; didCast = use_skill(stickCasts, $skill[Summon Stickers]); use_skill(3-stickCasts, $skill[Summon Snowcone]); if(didCast) print("Summoned: " +...
Top