In my OSL I have a good size Image, it is downloadable and so is the level, so nothing bad there. I create an NPC to show the Image and it works, hooray, I thought, well few weeks later the image is gone and I can't find out why. It is a 32bit image so it should work online but not offline.
PHP Code:
onlinestartlocal.nw: downloadable, level, 20733 byte, 2007-12-28 03:10:10
images/varia.png: downloadable, 386174 byte, 2008-01-13 03:08:36
here's the script
PHP Code:
NPC varia.png 23 26
//#CLIENTSIDE
function onCreated()
{
setimg( "varia.png");
dontBlock();
drawUnderPlayer();
setEffectMode( 1);
alpha = 0.5;
}
NPCEND