Thread: Nickname System
View Single Post
  #8  
Old 02-18-2017, 01:15 PM
LebJoe LebJoe is offline
Dragon
Join Date: Aug 2016
Location: Lebanon
Posts: 16
LebJoe is on a distinguished road
Quote:
Originally Posted by ffcmike View Post
This sounds like a problem which is specific to your server. Can you provide one of these NPC's scripts?
Sure:
NPC Code:
function onCreated() {
showcharacter();
this.head = "head0.png";
this.body = "body.png";
this.ap = 100;
this.nick = "NPC";
this.colors[0] = "orange";
this.colors[1] = "white";
this.colors[2] = "blue";
this.colors[3] = "red";
this.colors[4] = "black";
this.shield = "no-shield.png";
this.dir = 2;
setcharani("idle",NULL);
}

Reply With Quote