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

28 lines
643 B
Plaintext

#include "cs_misc_function"
void main()
{
//
// Move everyone within 20 meters of speaker to wp_cain waypoint (CS)
//
object oPC = GetPCSpeaker();
if (oPC != OBJECT_INVALID) {
cs_MovePartyNearbyToLocation(oPC, "wp_rod_05", 20.0);
}
/* OLD SCRIPT VERSION
object oPC = GetFirstPC();
object onPC = GetLastSpeaker();
while (GetIsPC(oPC)) {
float fDistance = GetDistanceBetween(oPC, onPC);
if (fDistance <= 30.0) {
DelayCommand(1.0,AssignCommand (oPC, JumpToObject(GetWaypointByTag("wp_cain"))));
} else {
}
oPC = GetNextPC();
};
*/
}