Thread: Looking for...
View Single Post
  #4  
Old 10-21-2009, 09:57 PM
Imperialistic Imperialistic is offline
graal player lord
Imperialistic's Avatar
Join Date: Apr 2007
Location: Florida
Posts: 1,094
Imperialistic is a jewel in the roughImperialistic is a jewel in the rough
Maybe I can give you a simple example. (but I'm mostly generalized to levels)

Okay lets say we want to create a door correct?

I'm going to piece it together.

PHP Code:
//#CLIENTSIDE
function onCreated()
{
  
this.setShape(13232);
  
this.setImg("block.png");

This is basically creating the door and setting the image there.


Now, to make the door dissappear when you say "open" this is what you'll have to do:

PHP Code:
function onPlayerChats()
{
    if (
player.chat == "open")
    {
      
hide();
   }
 } 
I'm not much of a scripter, but that pretty much shows examples of what different stuff does.
__________________
" It's been swell, but the swelling's gone down. "
Reply With Quote