View Single Post
  #2  
Old 03-07-2007, 11:56 PM
Kristi Kristi is offline
Bowie's Deciple
Kristi's Avatar
Join Date: Dec 2003
Location: Boston, MA
Posts: 748
Kristi has a spectacular aura aboutKristi has a spectacular aura about
Send a message via AIM to Kristi Send a message via MSN to Kristi
Quote:
Originally Posted by cyan3 View Post
On my server when anyone else but me logs on they have the classic tileset but when i log on i have the tileset i put on my server. later i found out that the tileset only works if i put the tileset image into the tiles folder in the graal folders. is they anything wrong with the script that makes it so you can't download the tileset?

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
//addtiledef revolutions_tileset_new.png,"",0;

youre mixing gs1 and gs2, your level is defined as the literal string "", instead of a null string (and that line is commented out but i assume that is an accident..>)

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
addtiledef("revolutions_tileset_new.png",null,0);

[
__________________
Reply With Quote