RoT2_PRC8/_module/nss/cb_ranger_w.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

37 lines
752 B
Plaintext

// Another Ranger feel good script by Tabbo. :P
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if ((GetLevelByClass(CLASS_TYPE_DRUID, oPC)==0)&&
(GetLevelByClass(CLASS_TYPE_RANGER, oPC)==0)&&
(GetLevelByClass(CLASS_TYPE_HARPER, oPC)==0))
return;
object oTarget;
object oSpawn;
location lTarget;
oTarget = GetWaypointByTag("wolf_01");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "wolf", lTarget);
oTarget = GetWaypointByTag("wolf_02");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "wolf", lTarget);
oTarget = GetWaypointByTag("wp_wolf_03");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "wolf", lTarget);
}