Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Downloading Tiledef (https://forums.graalonline.com/forums/showthread.php?t=72660)

cyan3 03-07-2007 11:37 PM

Downloading Tiledef
 
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;



Kristi 03-07-2007 11:56 PM

Quote:

Originally Posted by cyan3 (Post 1286017)
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);


[

cyan3 03-08-2007 12:05 AM

Quote:

Originally Posted by Kristi (Post 1286037)
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);


[

Thanks. I'm not that good at scripting so i don't know what is gs1 and gs2


All times are GMT +2. The time now is 01:51 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.