Need help with server setup.

I added the file to the folder “world” and that worked :smiley:

Oh god…now when I enter login the server works fine and my custom tileset works for me, but when my friend logs on the tileset is mashed up for him, its as if he doesn’t have it. It uses the default Graal tilesets.

Both my level and custom tileset are in the “world” folder.
Does he need to have the tileset for it to work?

The tileset needs to be in the proper image folder!

Cadavre I put it in every folder… could you please tell me which one? :confused:

The tileset works for some of my friends and for other it appears black or its fudged up.
I read the foldersconfig.txt, and the tileset is put where it should be.

Probably got something to do with their pc.

I just made them all download it and that worked.
Yet I really don’t get why I have to :confused: that means other players can’t play it

A dodgy workaround is to make an NPC just to load the image, on onlinestartlocal.nw for example.

i.e.
if (created) {setimg tileset.png; hide;}

That way the client will download the image from the server.

could just do:
showimg 300,tileset.png,screenwidth,screenheight;
changeimgvis 300,4;

which is even better as the player will never see it, but the client will download it.

Same as what mine does. Player never sees it, client loads it.

hah, I didn’t see the hide statement :S yours is better :stuck_out_tongue:

That’s fair :stuck_out_tongue: Usually I do use separate lines lol.