Quote:
Originally Posted by callimuc
Ok, thanks.
Recently I found another bug:
Sometimes NPCs do seem to disappear while checking for them. I have to update the level to get them back. But they do get displayed in the GUI. How does it come that some disappear, some wont and how can that get fixed?
The script of the NPC which disappears
PHP Code:
// Created by Alex Stravier join("npcdefault"); function onCreated() { showcharacter(); this.head = "kouji-head.png"; this.skin = "orange"; this.shoes = "orange"; this.sleeves = "red"; this.belt = "red"; this.coat = "red"; this.dir = 2; this.ani = "sit"; this.body = "xor-body.png"; //this.nick = "Simon Fowl"; this.x -= 0.5; this.y + 0.5;
this.chat = "Absolutely, 100% no."; }
The script of the NPC next to the disappearing NPC
PHP Code:
// Created by Alex Stravier join("npcdefault"); function onCreated() { showcharacter(); this.head = "headrexx.png"; this.body = "arwind-josey-body102.gif"; this.skin = "orange"; this.shoes = "orange"; this.sleeves = "brown"; this.belt = "gray"; this.coat = "brown"; this.hat = "hat777.png"; this.dir = "right"; this.ani = "sit"; this.nick = ""; this.x -= 0.5; }
this.join("npc");
//#CLIENTSIDE
function onCreated() { this.join("npc"); setnpcfeature("nickname", "Rexx"); setnpcfeature("nicknamecolour", "brown"); }

|
Already a reported issue.
http://forums.graalonline.com/forums...39&post1690139 + the next couple of posts.