Skip to content

Instantly share code, notes, and snippets.

@pnegri
Created March 25, 2014 03:59
Show Gist options
  • Save pnegri/9755026 to your computer and use it in GitHub Desktop.
Save pnegri/9755026 to your computer and use it in GitHub Desktop.
function onUseChecked( pUser, iUsed )
{
var iDice1 = RandomNumber( 1, 6 );
var iDice2 = RandomNumber( 1, 6 );
var pName = pUser.name;
if( iUsed.container != null )
pUser.EmoteMessage( pName+" rolls the dice and gets a "+iDice1+" and a "+iDice2+"." );
else
iUsed.TextMessage( pName+" rolls the dice and gets a "+iDice1+" and a "+iDice2+"." );
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment