Thread: Gralats
View Single Post
  #1  
Old 05-05-2007, 07:12 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
Gralats

HTML Code:
function onCreated()
{
  this.showcharacter();
  this.updategani();
}

if (updategani)
{
  this.updategani();
}

function updategani() 
{
  temp.gType = 1;
  temp.rupeeAmounts = {{5, 2}, {30, 3}, {100, 4}};
  for (temp.curAmount: temp.rupeeAmounts)
  {
    if (rupees >= temp.curAmount[0])
    {
      temp.gType = temp.curAmount[1];
    }
  }
  this.setcharani("gralats", temp.gType);
}

function onPlayerTouchsMe()
{
  player.rupees += rupees;
  this.destroy();
}

//#CLIENTSIDE
function onCreated()
{
  this.blockAgain();
}
Some fun
Reply With Quote