I searched google on how to do it and ran across a thread here from 2007 and i tried runing the sheel scripts and stuff in terminal but it was confusing and it didnt work the closest I got was it opened up one window then I exited it and another window appeared but not at the same time. So if anybody could give me step by step instructions on how to copy the wow folders and make a script or whatever so far I made a "wowcopy" folder inside of my original "world of warcraft" folder I copied the Cache, Data, Interface, Logs, Realmlist.wtf, World of warcraft shortcut, WTF folder. all inside and made a script

#!/bin/sh

p1="/Applications/World of Warcraft"

p2=$p1/wowcopy

mkdir "$p2"

ln -s "$p1/Data" "$p2/Data"

cp "$p1/realmlist.wtf" "$p2/realmlist.wtf"

ditto -X "$p1/World of Warcraft.app" "$p2/World of Warcraft.app"


but it crashes as soon as it opens and gives me a send error message to blizzard. So any help would be wonderfull thanks.