PE help menu

User Tag List

Thread: PE help

Results 1 to 9 of 9
  1. #1
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    PE help

    i'm working on a new paladin healing profile for PE and i run into a bump or a bug, what happens is that every time i cast a spell it stops at the last second then it just stalls, does anyone know why ? thanks

    PE help
  2. #2
    Nevodark's Avatar Contributor
    Reputation
    233
    Join Date
    Sep 2012
    Posts
    378
    Thanks G/R
    22/22
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What level are you that its happening with? and can you upload and link your code somewere so we can see it? ^^

  3. #3
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    moved to post # 7
    Last edited by muffin man; 05-24-2014 at 05:34 PM. Reason: out of date post

  4. #4
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i think i figured it out i removed "!player.moving" from the main heals and it seems to work ok, but it does sometimes stall on holy light not as bad as it was before

  5. #5
    Nevodark's Avatar Contributor
    Reputation
    233
    Join Date
    Sep 2012
    Posts
    378
    Thanks G/R
    22/22
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Whats the local = in combat at the top for i dont remember seeing that before in PE profiles although i may be forgetting ^^

    i cant actually outright see anything wrong with it, have you got the most updated version of PE and everything?

    and GJ on making a very detailed profile btw looks good and hope you can sort out the bugs you have! :P

  6. #6
    thefrese's Avatar Member
    Reputation
    10
    Join Date
    Sep 2013
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nevodark View Post
    Whats the local = in combat at the top for i dont remember seeing that before in PE profiles although i may be forgetting ^^

    i cant actually outright see anything wrong with it, have you got the most updated version of PE and everything?

    and GJ on making a very detailed profile btw looks good and hope you can sort out the bugs you have! :P
    The local = in combat is definitely not a PE thing. Are you using a newish branch someone made or a really old version or something?

  7. #7
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here's the code just copy and past it in to a pe profile let me know if it works !
    recommend talent "Selfless Healer"
    left control = mouse over dispel
    left alt = hand of freedom

    you need to be Glyph in to beacon of light !!!!!!!

    Code:
    	ProbablyEngine.library.register('dispell', {
    	  Cleanse = function(spell)
    		local prefix = (IsInRaid() and 'raid') or 'party'
    		for i = -1, GetNumGroupMembers() - 1 do
    		  local unit = (i == -1 and 'target') or (i == 0 and 'player') or prefix .. i
    		  if IsSpellInRange('cleanse', unit) then
    			for j = 1, 40 do
    			  local debuffName, _, _, _, dispelType, duration, expires, _, _, _, spellID, _, isBossDebuff, _, _, _ = UnitDebuff(unit, j)
    			  if dispelType and dispelType == 'Magic' or dispelType == 'Poison' or dispelType == 'Disease' then
    				local ignore = false
    				for k = 1, #ignoreDebuffs do
    				  if debuffName == ignoreDebuffs[k] then
    					ignore = true
    					break
    				  end
    				end
    				if not ignore then
    				  ProbablyEngine.dsl.parsedTarget = unit
    				  return true
    				end
    			  end
    			  if not debuffName then
    				break
    			  end
    			end
    		  end
    		end
    		return false
    	  end})
    
    
    ProbablyEngine.rotation.register_custom(65, "test", {
    	
    
    
    		{ "pause", "modifier.lshift"},
    
    
    		{ "114157", { -- Execution Sentence
    		"player.spell(114157).exists",
    		"lowest.health < 85",
    		}, "lowest" },
    	
    		{"1044", "focus.state.root","focus"},
    		{"1044", "focus.state.snare","focus"},
    		
    		--Hand of freedom mouse over
    		{ "1044", { 
    		"modifier.lalt",
    		"mouseover.spell(1044).range"
    		}, "mouseover" },
    		
    		{ "54428", "player.mana < 85", nil }, -- Divine Plea
    		
    		--Word of Glory--
    		{"Word of Glory",{
    		"player.buff(Divine Purpose)",
    		"lowest.health <= 97",
    		}, "lowest"  },
    		{"Word of Glory",{ -- Moving 
    		"player.buff(Divine Purpose)",
    		"lowest.health <= 97",
    		"player.moving"
    		}, "lowest"  },
    		{ "85673", { 
    		"player.holypower >= 3",
    		"lowest.health <= 90",
    		}, "lowest"  },
    		{ "85673", { -- Moving 
    		"player.holypower >= 3",
    		"lowest.health <= 90",
    		"player.moving"
    		}, "lowest"  },
    		
    		-- Flash of Light --
    		{"Flash of light", {
    		"player.buff(selfless healer).count = 3",
    		"lowest.health <= 80",
    		},"lowest"},
    		{"Flash of light", {
    		"player.buff(selfless healer).count = 3",
    		"lowest.health <= 80",
    		"player.moving"
    		},"lowest"},
    
    		-- Holy Shock
    		{ "20473", "lowest.health < 100", "lowest" }, 
    		-- Holy Shock moving
    		{ "20473", {
    		"lowest.health < 100", 
    		"player.moving"
    		},"lowest" }, 
    	
    	-- Interrupts
    		{ "96231", {
    		"target.range < 5",
    		"modifier.interrupts", 
    		}}, 
    	-- Hand of freedom self --
    		{ "1044", {
    		"player.state.root", 
    		"toggle.free"
    		}}, 
    		{ "1044", {
    		"player.state.snare", 
    		"toggle.free"
    		}},
    
    		{ "20271", "target.spell(20271).range", "target" }, -- Judgment
    		 -- Holy Prism
    		{ "114165",{ 
    		 "lowest.health < 85",
    		}, "lowest"},
    		-- Auto Seal 
    		{"Seal of Insight",{
    		"player.seal != 3",
    		}},
    		--
    		{ "Hand of Sacrifice", { 
    		"player.health > 50",
    		"lowest.health < 30"
    		}, "lowest" },
    		
    		-- Core Heals --
    		{ "Divine Light", {
    		"lowest.health < 75",
    		"!player.holypower > 3", 
    		"lowest.range <= 40",
    		"!player.buff(Divine Purpose)",
    		}, "lowest" }, 
    	
    		{ "Flash of light", { 
    		"lowest.health < 30", 
    		}, "lowest" }, -- Flash of light
    		{ "Holy Light", {
    		"lowest.health < 97", 
    		"!player.holypower > 3", 
    		"!player.buff(Divine Purpose)",	
    		}, "lowest" }, -- Holy Light
    	
    		--testing new ideas Beacon of Light --- MUST BE GLYPHS ---
    		{"Beacon of Light",{
    		"lowest.health < 100",
    		"!lowest.buff(53563)",
    		}, "lowest"},
    
    		{{-- Cooldowns
    		{ "31821", "@coreHealing.needsHealing(40, 5)", nil }, -- Devotion Aura	
    		{ "31884", "@coreHealing.needsHealing(95, 4)", nil }, -- Avenging Wrath
    		{ "86669", "@coreHealing.needsHealing(85, 4)", nil }, -- Guardian of Ancient Kings
    		{ "31842", "@coreHealing.needsHealing(90, 4)", nil }, -- Divine Favor
    		{ "105809", "talent(13)", nil }, -- Holy Avenger
    		}, "modifier.cooldowns" },
    	
    	-- Dispel
    		{ "4987", { "toggle.dispel", "@dispell.Cleanse()" }, nil },
    			
    
    		{ "82326", { "lowest.health < 75", "[email protected](90, 4)", "!player.moving", "player.buff(54149)" }, "lowest" }, -- Divine Light
    	
    		{{
    			{ "85222", { "@coreHealing.needsHealing(90, 3)", "player.holypower >= 3", "modifier.party" }, "lowest" }, -- Light of Dawn meh
    			{ "82327", { "@coreHealing.needsHealing(80, 3)", "!modifier.last", "!player.moving", "modifier.party" }, "lowest" }, -- Holy Radiance meh
    			{ "85222", { "@coreHealing.needsHealing(90, 5)", "player.holypower >= 3", "modifier.raid", "!modifier.members > 10" }, "lowest" }, -- Light of Dawn party
    			{ "82327", { "@coreHealing.needsHealing(90, 5)", "!modifier.last", "!player.moving", "modifier.raid", "!modifier.members > 10" }, "lowest" }, -- Holy Radiance party
    			{ "85222", { "@coreHealing.needsHealing(90, 8)", "player.holypower >= 3", "modifier.members > 10" }, "lowest" }, -- Light of Dawn raid
    			{ "82327", { "@coreHealing.needsHealing(90, 8)", "!modifier.last", "!player.moving", "modifier.members > 10" }, "lowest" }, -- Holy Radiance raid
    			},"modifier.multitarget"},
    		
    		{ "633", "lowest.health < 15", "lowest" }, -- Lay on Hands
    		{ "20925", { "spell.charges(20925) >= 2", "lowest.health < 90", "!lowest.buff(148039)", "lowest.spell(20925).range", "!modifier.last" }, "lowest" }, -- Sacred Shield
    	-- Dps
    
    },
    		---END IN-COMBAT----
    		---	OFC ---
    {
    		{ "pause", "modifier.lshift"}, --- PAUSE
    		{ "4987", "modifier.lcontrol", "mouseover" }, --- Dispell mouseover
    		
    		{"Beacon of Light",{
    		"!lowest.buff(53563)",
    		"lowest.health < 100"
    		}, "lowest"},
    		
    		{ "1044", { --- Hand of Freedom mouseover
    		"modifier.lalt",
    		"mouseover.spell(1044).range"
    		}, "mouseover" },
    		--- Dps
    
    		
    		{ "85673", { -- Word of Glory
    		"player.buff(Divine Purpose)",
    		"lowest.health <= 90",
    		}, "lowest"  },
    		{ "85673", { -- Word of Glory
    		"player.holypower >= 3",
    		"lowest.health <= 80",
    		}, "lowest"  },
    		
    		{"Seal of Insight",{
    		"player.seal != 3",
    		}},
    		--- Holy shock
    		{ "20473", "lowest.health < 100", "lowest" }, 
    		{ "20473", { --- Holy Shock moving 
    		"lowest.health < 100", 
    		"player.moving"
    		},"lowest" },
    		-- Hand of freedom self --
    		{ "1044", {
    		"player.state.root", 
    		"toggle.free"
    		}}, 
    		{ "1044", {
    		"player.state.snare", 
    		"toggle.free"
    		}},
    
      
    },		---END OUT-OF-COMBAT---
    function()
    	ProbablyEngine.toggle.create('free', 'Interface\\Icons\\spell_holy_sealofvalor', 'Hand of Freedom')
    	ProbablyEngine.toggle.create('dispel', 'Interface\\Icons\\Ability_paladin_sacredcleansing.png', 'Dispel Everything')
    	end)

    i'm still working on it but i seem to run out off mana any ideas ?
    Last edited by muffin man; 05-24-2014 at 05:30 PM.

  8. #8
    Nevodark's Avatar Contributor
    Reputation
    233
    Join Date
    Sep 2012
    Posts
    378
    Thanks G/R
    22/22
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if it runs out of mana a lot try moveing when its casting holy light or other filler non important spells.

    it will save you a fair bit of mana in the long run by cancelling the weaker spells and letting other healers do some work too haha ^^

    i think all profiles for PE and PQR did that quite a bit. being a pefect bot healer tends to shred mana, just stop it casting all the time by moveing about and life is good! stand still when you need to do more healing again ect,

  9. #9
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    did some more work on it, testing it on ptr all day seems to work just fine it does eat up mana but not that bad, going to move this over to maps and profiles.

Similar Threads

  1. Help WoW Fish-Bot
    By Eliteplague in forum World of Warcraft General
    Replies: 2
    Last Post: 12-10-2024, 05:46 PM
  2. HELP: Gold Scam Exploit
    By GoldDragon in forum World of Warcraft General
    Replies: 11
    Last Post: 01-23-2007, 07:26 PM
  3. Banner Ad Redesign help
    By Matt in forum Community Chat
    Replies: 57
    Last Post: 07-08-2006, 08:40 PM
  4. Hit points and talent points? Please help
    By hankusdankus in forum World of Warcraft General
    Replies: 6
    Last Post: 05-04-2006, 02:00 PM
  5. bot help
    By xwhitedeathx in forum World of Warcraft General
    Replies: 3
    Last Post: 05-01-2006, 03:50 AM
All times are GMT -5. The time now is 11:38 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search