16 lines
464 B
Plaintext
16 lines
464 B
Plaintext
|
// Script for the Aidbringer administrator-rod
|
||
|
// This script gives an officer's key to the targeted member.
|
||
|
// 5th of September 2005, Alangara, made by -Seeker-
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oTarget = GetLocalObject( oPC, "mn_target" );
|
||
|
DeleteLocalObject( oPC, "mn_target" );
|
||
|
|
||
|
// Give ring
|
||
|
CreateItemOnObject("mn_aidbr_offkey", oTarget, 1);
|
||
|
|
||
|
FloatingTextStringOnCreature( "Key given to "+GetName( oTarget ), oPC, FALSE );
|
||
|
}
|