Sorry about the delay with the new playerworlds, we needed to setup more playerworlds before approving more projects (on graal.net). On Saturday night / Sunday morning everything should work fine again.
About 3d terrain: Playerworlds are allowed to use the 3d terrain, together with the picso.png and the flower gfx and trees. It's not allowed to use other gfx from Graal Kingdoms (houses, characters, monsters, items), we might make it possible in the future to get those in a special pack together with scripts and sounds.
About the rights system: For weapon subfolders you need to add another line of rights, you need rights for each weapon subfolder you want to use, one 'rw WEAPONS/*' line is not enough.
It's possible now to deny rights, just add a minus in front:
NPC Code:
rw levels/*.graal
-rw levels/secretlevel.graal
would give access to all graal files in the levels folder, except to 'secretlevel.graal'.
In scripts you can check for rights with the hasright command, e.g. if (hasright(rw,levels/secretlevel)) ...