well, i have been working on gani scripting (working as in trying to find out what the heck a gani script is!) and i was wondering, could i just do
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
{
if (player.chat == "/grow")
{
client.zoom=1;
sleep(1);
client.zoom=2;
sleep(1);
client.zoom=3;
sleep(1);
client.zoom=4;
}
}
to make the person grow really tall?