//:://///////////////////////////////////////////// //:: FileName quest_rang_c //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 2003-10-01 12:42:32 PM //::////////////////////////////////////////////// void main() { // Give the speaker some XP GiveXPToCreature(GetPCSpeaker(), 100); // Give the speaker some gold GiveGoldToCreature(GetPCSpeaker(), 100); // Give the speaker the items CreateItemOnObject("branchofadeid002", GetPCSpeaker(), 1); // Remove items from the player's inventory object oItemToTake; oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "RHUN_FIGHQS1"); if(GetIsObjectValid(oItemToTake) != 0) DestroyObject(oItemToTake); object oItemToTake1; oItemToTake1 = GetItemPossessedBy(GetPCSpeaker(), "RHUN_BNTY_1"); if(GetIsObjectValid(oItemToTake1) != 0) DestroyObject(oItemToTake1); }