View Single Post
  #5  
Old 06-07-2012, 03:35 AM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by callimuc View Post
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.-= 0.5;
  
this.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.-= 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.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote