Results 1 to 10 of 12

Thread: Spawn an Image Script

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Spawn an Image Script

    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
    Last edited by Johnyoungman224; 01-03-2015 at 10:24 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •