Script to send one command if you are mounted and one if you are not:
For Pinco's UI it should be as follows:
This is useful because if you are mounted and give the kill command to a loose pet, your mount will fail the kill command and lose loyalty. This prevents that.
Code:
script if WindowData.MountedObjId > 0 then SendChat(nil, L"/say Dumbo kill") else SendChat(nil, L"/say all kill") end
Code:
script if IsRiding() then SendChat(nil, L"/say Dumbo kill") else SendChat(nil, L"/say all kill") end
Last edited: