Quote:
Originally Posted by cyan3
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);
}
[