Yep.
http://www.youtube.com/watch?v=15sMHlxXFZkhere's your stupid(ly done) script!!!
function serverCmdNope(%client, %r)
{
%client.player.nope(%r);
}
function AIPlayer::nope(%o, %s)
{
if(!%s)
{
%s = 3000;
}
cancel(%o.nope);
%o.playThread(0, "headUp");
%o.nope = %o.schedule(50, playThread, 1, "headUp");
%o.nope = %o.schedule(100, playThread, 2, "headUp");
%o.nope = %o.schedule(150, playThread, 3, "headUp");
%o.nope = %o.schedule(150+%s, playThread, 0, "root");
%o.nope = %o.schedule(150+%s, playThread, 1, "root");
%o.nope = %o.schedule(150+%s, playThread, 2, "root");
%o.nope = %o.schedule(150+%s, playThread, 3, "root");
}
function Player::nope(%o, %s)
{
if(!%s)
{
%s = 3000;
}
cancel(%o.nope);
%o.playThread(0, "headUp");
%o.nope = %o.schedule(50, playThread, 1, "headUp");
%o.nope = %o.schedule(100, playThread, 2, "headUp");
%o.nope = %o.schedule(150, playThread, 3, "headUp");
%o.nope = %o.schedule(150+%s, playThread, 0, "root");
%o.nope = %o.schedule(150+%s, playThread, 1, "root");
%o.nope = %o.schedule(150+%s, playThread, 2, "root");
%o.nope = %o.schedule(150+%s, playThread, 3, "root");
}
registerOutputEvent(Player, nope, "int 0 30000 0");