Do or Die
[PQR] Monk Mistweaver
dont know why you'd need a timer since its 1 or nil return
however,
local starttime = 0
if IsFalling() then
starttime = GetTime()
end
if starttime <= GetTime() then
UseItemByID(id)
end
Last edited by crystal_tech; 06-05-2013 at 07:10 PM.
Please if someone helped you donate rep to them.
Hi guys!
So I decided to try PQR but everytime I try to activate my rotation in game with Alt+X it says "PQR_xrn5.lua is missing. Rotation has been stopped".
Any idea how to solve this?
I was wondering too, Crystal, but I saw why immediately after writing the ability - If you fall even for a split second, as in riding over a bump in the road, it will trigger the ability...There needs to be a short delay so that the profile understands the you're really falling and didn't just press your space bar and jump.
That's asked constantly.. the usual problem is operator error, by chance have you tried starting combat?profile won't attack
Nah, I have been using PQR for almost 2 years, and I had this happen to me on Tuesday night. Profile seems to load, printed to chat that it loaded, but profile did not actually start. I asked if anyone else has had this happen to them a few posts ago(http://www.ownedcore.com/forums/show....php?p=2764743)
Sent from my Galaxy S3 using Tapatalk 2
Last edited by cukiemunster; 06-05-2013 at 11:08 PM.
Double post
When using a profile, don't forget to put the data file(s) from the rotation into the data folder of PQR.
Basicly, you need to have atleast 3 things when using a rotation:
1) The data file which needs to be in the Data folder
2) The ability file which needs to be in the Profile > Class folder
3) The rotation file which needs to be in the Profile > Class folder
I can upload the file if you can't find it on the forum.![]()
When I tab out of WoW for an extended period of time both the WoW client and PQR stop responding meaning I need to reload everything, How does one fix this?
I was gonna use a rotation that came with the program :S The ability file and rotation file are where they should be but I don't understand what is this data file you're talking about. xD I'd love it if you could upload the file for me! And sorry for my terrible english, I'm swedish but I hope you understand!![]()
that should get you going, the last code i typed out for ya my wife was yelling at me and i was unable to correct it.PHP Code:
local delay = 1.5 ---secs
if falltime == nil then falltime = GetTime() end
if IsFalling() then
if GetTime() - falltime > delay then
falltime = GetTime()
return true
end
end
Please if someone helped you donate rep to them.
crystal_tech (and everyone else)
what is your opinion on the below, I try not to use the if statement anymore
Code:if falltime == nil then falltime = GetTime() endCode:falltime = falltime or GetTime()
Do or Die
[PQR] Monk Mistweaver