I see a few views but no replies - maybe I need to clarify my question.

Are you supposed to place /script commands in a text file somewhere in the WOW install? Here is what I'm trying to do, I want to enable the quest get/accept/turnin from Falcor's post:

Part 1 - Setup an Action Keybind.





Source code
1 2
/script SetBinding("L", "TURNORACTION") /script SaveBindings(1)



Change the L to a key of your choice.

Part 2 - The Macro.





Source code
1 2 3 4 5 6
/script SelectGossipAvailableQuest(1) /script SelectGossipActiveQuest(1) /script CompleteQuest() /script GetQuestReward(1) /script SelectGossipOption(1) /script AcceptQuest()




The first line selects the first available quest.
The second line selects the first active quest, which will supercede the first available if you currently have a quest.
The third line allows you to complete a quest you currently have.
The fourth line selects your reward.
The fith line is to select the gossip option that is not part of a quest. (Used to confirm you are ready to escort after taking a quest)
The sixth and final line will accept a quest that you do not have.




What is throwing me off is part 1. Setting an action keybind, I would assume means cutting and pasting the script code and putting it into a macro with icon, then dragging icon to an action bar slot, then assigning the slot to a key command - yes? But it seems like part 2 is saying to do that - so do you put the part 1 in an autload section so the key is already mapped? Or is this a two-key macro mapping? Thanks for help - confused with /script -