I'm having some problems to add custom mounts to 95 core...
By default I can only mount on horses or ostards...
I think it could be something related to the npc's graphic.
That's what the far I could go digging into the conf files:
Code: Select all
if(pncfg[who.npctemplate].mount)
var mymount := CreateItemAtLocation(5288,1176,0,0xf021,1);
var mountparms := splitwords(pncfg[who.npctemplate].mount);
mymount.graphic := Cint(mountparms[1]);
mymount.color := Cint(mountparms[2]);
EquipItem(who, mymount);
endifI've tried to add a few on the npcdesc, like
Code: Select all
mount <graphic> <color>seems that it is executed by NPCKeeper, what I couldn't find is... What is the action trigger (dblclick) that sends it to NPCKeeper, as well as how can I set that "mount" property to another graphic...
Someone?
thanks