Added PEPS AI

Added PEPS AI.
Full compile.
Reorganized repository.
This commit is contained in:
Jaysyn904
2025-07-28 12:49:34 -04:00
parent b831afe171
commit ab2fc1d732
5040 changed files with 71106 additions and 8200 deletions

View File

@@ -0,0 +1,36 @@
// 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);
}