Quote:
Originally Posted by Oinkness
That book can't possibly exist.
But if anyone could send me the gralat script that comes with playerworlds, I would appreciate it. 
|
PHP Code:
function onCreated() {
showcharacter();
updategani();
}
function updategani() {
temp.type = 1;
if (this.rupees >= 100) temp.type = 4;
else if (this.rupees>=30) temp.type = 3;
else if (this.rupees>=5) temp.type = 2;
setcharani("gralats",temp.type);
}
function onPlayertouchsme() {
player.rupees += this.rupees;
this.rupees = null;
destroy();
}