All the Time i read SVN, but i have no idea what that is! i just go to the site and download each file ... is there a program or something?
All the Time i read SVN, but i have no idea what that is! i just go to the site and download each file ... is there a program or something?
have you even made the effort to just google it or check it up on wikipedia? It takes 5 seconds man, when I didnt know what SVN was I just researched it myself.
How to use svn video-tutorial:
How to Use Tortoise SVN - YouTube
its hard to figure out which SVN is meant, when it is only called svn ... google in germany brings up MANY things with only SVN ... where the heck should i know that i have to use tortoise SVN?
but thanks anyways
Tortoise is just an example, you would just search "how to setup svn guide" and it would help you on your way. Did you get your svn set up finally btw?
Hey,
I got the same LUA errors as Weischbier and imasandman since rev.37. Before that everything worked totally fine.
I really love your DK profile and can't live without them anymore so I hope for a quick fix
Edit:
I got the errors with your Blood profile and yes I have pqi and everything up 2 date![]()
I changed the way runecheck works.
I would have to change all profiles to make that use that function, instead i was lazy and forgot to do that.
I will revert the function soon.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
New Profiles are up:
- Fixed RuneCheck function.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
works like a charm! thanks!
Sorry but my retard is almost at full retard
what i want is:
Dizzzying haze: Left Ctrl
BOF: Right Ctrl
Touch of Death: Off
Pause 1: Left Alt
Pause 2: Off
I could do it myself if i knew where the tables for the correct mod numbers was.
Also: Even after disabling Pause2 in the nova frame (clearing all its buttons, and deactivating it) it refuses to deactivate. shift still causes the rotation to pause.
Last edited by TehVoyager; 03-09-2013 at 11:18 PM.
(don't post things I post to Patreon.)
@Rubim hey do I need to tick chi wave and chi wave rotation for it to work?
Hey Rubim,
TYVM for the new stuff ur doing....rly loving it!
1 Question though>
Iam playing Blood DK and i would like to bind DnD to LeftControl instead of casting it in normal rotation so i can decide when its cast...how do i set that up? i have the addon installed but since i did that the nova frame where i used to set it up i gone and under the rotation editor there is nothing called DnD...
Hope u can help me out...
Nope.
Chi Wave with percent is for healing.
Chi Wave Rotation is for the added damage since its free.
You cant anymore.Hey Rubim,
TYVM for the new stuff ur doing....rly loving it!
1 Question though>
Iam playing Blood DK and i would like to bind DnD to LeftControl instead of casting it in normal rotation so i can decide when its cast...how do i set that up? i have the addon installed but since i did that the nova frame where i used to set it up i gone and under the rotation editor there is nothing called DnD...
Hope u can help me out...
Learn to use /rcast, its on the second thread on the first page.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
Doesn't seem to work, I've installed everything correctly. It says DW DK loaded in the chat window and PQRinterface addon detects that the rotation is running.
Running latest from SVN.
* Had to copy the profiles from OLD PROFILES inside the DEATH KNIGHT folder into the DEATH KNIGHT folder. Those profiles work'
Can't get the menu working though..
Last edited by Xcesiuss; 03-10-2013 at 12:27 PM.
Just want to give props to your deathknight profiles. They absolutely rock!
Thanks to you I don't need to create my own profiles anymore.
I must admit I like your previous profile better, tho... the last one you released before start using PQ_Interface was almost flawless. Only thing I changed was putting a combat check before activating hotkeys and checking if mouseover was an alive enemy before casting DnD on mouseover (for DW single target and 2Hand AoE).
I also noticed you are not porting SimCraft's "(target.health.pct%target.time_to_die)" correctly. Your code translates it as (TargetHP/TimeToDie) when you should be using (TargetHP % TimeToDie). This causes some errors when calculating the right time to cast Soul Reaper (and i *think* is the source of your difficulty to correctly implement Blood Tap).
That said, I tried correcting it and stuff went really crazy... probably because LUA numbers aren't integers but doubles instead.
Anyways, I think we can correctly predict Soul Reaper so when it procs (5s later) the target HP pct is equal or under 35 (45 w/ t15) like this:
DpsOnTarget can be easily calculated by modifying team nova's TimeToDie function so it returns the dps on target instead of it's time to die.PHP Code:
if 100 * (UnitHealth("target") - DpsOnTarget * 5) / UnitHealthMax("target") <= 35 then ...
This is, in fact, the same principle of SimCraft's formula... just written differently.
Best regards!
Last edited by Holobyte; 03-10-2013 at 06:28 PM.