23 lines
514 B
Plaintext
23 lines
514 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Emote Wand: Follow pc
|
||
|
//:: onConv emotewand
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: bloodsong
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oOther = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oPC);
|
||
|
|
||
|
AssignCommand(oPC, ActionForceFollowObject(oOther, 1.0));
|
||
|
|
||
|
|
||
|
}
|