View Single Post
  #12  
Old 02-23-2011, 01:11 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
The variables are only accessible on the client-side in your script above.

You can simply just place them on the server-side.

PHP Code:
join("object_buy");

function 
onCreated() 

  
this.item "Ghost"
  
this.price "2500"
  
this.weapon "Morphs/Ghost"
}

//#CLIENTSIDE

function onCreated() 

  
this.item "Ghost"
  
this.price "2500"
  
this.weapon "Morphs/Ghost"

__________________
Quote:
Reply With Quote