[quote author=Tingalz link=topic=80062.msg1389262#msg1389262 date=1250307225]
forget, I tried making a Kamakazie playertype and royally forgeted up. It won't appear ingame, guess I have to look around in the script some more >.>
EDIT: Well, it would be smart to post the script (if anyone can help me, i will be grateful) Note, I tried using functions from the Rotondo Zombie mod Boomer.
-snip-
[/quote]
You used the reference of the olyimpic playertype I posted.
=D
Here is a servercmd I made.
[code]
function servercmdkillme(%client)
{
%client.player.kill
}
Kalphiter helped me edit it, for I did it in a weird way at first.
Second script I ever made. It's a /rules cmd.
function servercmdrules(%client)
{
messageClient(%client,'',"/c6No asking for admin");
messageClient(%client,'',"/c6No abusing admin powers");
messageClient(%client,'',"/c6No Spamming Bricks");
messageClient(%client,'',"/c6No Spamming the Chatline");
messageClient(%client,'',"/c6No Being an Asswipe");
}
Thanks Technoscubed for helping me remember the semi-colons.
And Crysist, for adding no being an asswipe.
And yet a third script!
function servercmdbounceme(%client)
{
%client.player.addvelocity("0 10 0"); //This tells the server "Hey, make me bounce up!"
messageClient(%client,'', "/c6Boing!"); //This tells the server that it needs to talk to you, for you are a lonely loser.
}
As you can see, this is an add velocity script, with a messageto the client saying Boing![/code]