Random NPC texture code
Hello,
I've been looking at some old posts, but I can't seem to get this code to work.
I have the following in default.pl, located in Quests -> global
-------------------
sub EVENT_SPAWN {
quest::settimer("texturechange", 5);
}
sub EVENT_TIMER {
if($timer eq "texturechange") {
my $NPCRace = $npc
if($NPCRace == 13){
quest::stoptimer("texturechange");
plugin::RandomFeatures($npc); ### Simply changes face, hair, etc.
}
}
}
------------
My hope is that it would make any Aviaks (race 13) randomly pick a texture, but it doesn't seem to be functioning. Coming back after a long hiatus, so I'm rusty on quest writing...
Can anyone please provide some guidance?
Thank you!
|