Hello, I need a script which will allow me to place an image for example if I said :image (image name/file). I also would like it to place on my playerx and playery or my mousex and mousey. I would appreciate any help and would love for a script. I would also like a script which allows me to place an item or weapon. So that when I say :weapon or :w the item I say after will be spawned/placed.
Here is a simple script I made which allows me to place any image on the server as a horse, but it only places the image in the horse template. I would like the whole image to be spawned. Of course the image would have to be on the server for anyone else to see it.
Code:
//#CLIENTSIDE
function onPlayerChats() {
if (player.chat.starts(":h")) {
horse = player.chat.substring(3);
puthorse(horse, player.x, player.y);
}
}
-Thanks John Raven Youngman