Author Topic: How to make models with milkshape and how to make chat commands  (Read 616 times)

idk how to make models with milkshape could someone give me a tourtual for it?

the chat commands i was in a different topic and someone posted something
about a Die command and how to make it work but i cant fugure it out can someone
help me plz

Quote
Code: [Select]
functionStarts the function
Code: [Select]
function serverCmdTell the function it's going to be a serverCmd
Code: [Select]
function serverCmddieTells the function to trigger when you type /die
Code: [Select]
function serverCmddie(%client)Records the client (computer) that entered the command for use in the actions section
Code: [Select]
function serverCmddie(%client)
{
Opens up the actions section, where the main part of the script is.
Let's go to the next part now.
Code: [Select]
   %clientTargets the client of who entered /die.
Code: [Select]
   %client.playerTargets the player of the client who entered /die.
Code: [Select]
   %client.player.kill();Tells the player of the client who entered /die to, well, die.
Code: [Select]
   %client.player.kill();
}
Closes the function.
So we have...
Code: [Select]
function serverCmddie(%client)
{
   %client.player.kill();
}
When you type /die, you die. It's pretty simple.
I honestly don't know how to dumb it down more than that. I don't know how to use milkshape, either, but you should use this button instead of asking: