View Single Post
  #1  
Old 12-14-2010, 12:22 AM
oomey30 oomey30 is offline
Graal Online Player
oomey30's Avatar
Join Date: Oct 2010
Posts: 17
oomey30 is an unknown quantity at this point
Send a message via AIM to oomey30
Cool Gralats Not Respawning?

Hello, I need help with my server dev oomey30.
When you slash a bush no gralats appear. Here is the script.

function onCreated() {
showcharacter();
updategani();
dontblock();
}
function onUpdategani() {
updategani();
}

function updategani() {
temp.type = 1;
if (rupees>=100) temp.type = 4;
else if (rupees>=30) temp.type = 3;
else if (rupees>=5) temp.type = 2;

setcharani("gems", temp.type);
}

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

I really hope someone can help out
__________________
Boomey30
Skill : Scripting, Graphical Designer, and Level Designer
Reply With Quote