PCP fix for 1.14 client (works with both clients)

Share or request WoW addons
User avatar
pumpan
Posts: 63

Re: PCP fix for 1.14 client (works with both clients)

Post by pumpan »

spheedy wrote: Wed Sep 17, 2025 4:54 pm on
- twin emp preset loads 24 rogues , instead of im guessing 14
- cthun the preset loads 16 shamans , 8 priests , 15 rogues , instead of 27 rogues 8 shaman 4 priest as the button says
on client 1.14.

Is there a way to change/edit all this presets ?
You’re talking about FillRaidBots, which is a different addon. You can find it here:
:arrow: https://forum.solocraft.org/viewtopic.php?f=15&t=659&sid=78a0c984d4c31799acbd8d5426f7a855

And yes, you can change the presets, just press the Edit button.
User avatar
Gahn
Posts: 1

Re: PCP fix for 1.14 client (works with both clients)

Post by Gahn »

pumpan wrote: Tue Sep 16, 2025 12:26 am
Shadfly wrote: Mon Sep 15, 2025 8:42 amSame issue here
what version of the game are you running?
Same here. No icon and no dragable window.

So I changed the PCB.xml (this is the PCB.xml from line 1 to 88) :

Code: Select all

<!-- Addon by Leontiesh (Ace) (Edited by Solo for SoloCraft.org) -->
<Ui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.blizzard.com/wow/ui/">

	<Script file="PCP.lua" />

<Frame name="PCPButtonFrame" parent="Minimap" enableMouse="true" hidden="false" frameStrata="LOW">
		<Size>
			<AbsDimension x="32" y="32" />
		</Size>
		<Anchors>
			<Anchor point="TOP" relativeTo="Minimap" relativePoint="TOP">
				<Offset>
					<AbsDimension x="0" y="0" />
				</Offset>
			</Anchor>
		</Anchors>
		<Frames>
			<Button name="AtlasButton">
				<Size>
					<AbsDimension x="24" y="24" />
				</Size>
				<Anchors>
					<Anchor point="TOP" >
						<Offset>
							<AbsDimension x="0" y="0" />
						</Offset>
					</Anchor>
				</Anchors>
				<NormalTexture file="Interface\AddOns\PCP\img\SoloCraft" />
				<PushedTexture file="Interface\AddOns\PCP\img\SoloCraft" />
				<HighlightTexture alphaMode="ADD" file="Interface\Minimap\UI-Minimap-ZoomButton-Highlight" />
				<Scripts>
					<OnLoad>
						self:RegisterForDrag("RightButton");
						self.dragme = false;
					</OnLoad>
					<OnDragStart>
						self.dragme = true;
					</OnDragStart>
					<OnDragStop>
						self.dragme = false;
					</OnDragStop>
					<OnUpdate>
						if(self.dragme == true) then
						PCPButtonFrame_BeingDragged();
						end
					</OnUpdate>
					<OnClick>
						PCPButtonFrame_OnClick(self);
					</OnClick>
					<OnEnter>
						PCPButtonFrame_OnEnter(self);
					</OnEnter>
					<OnLeave>
						GameTooltip:Hide();
					</OnLeave>
				</Scripts>
			</Button>
		</Frames>
		<Scripts>
			<OnLoad>
				<!-- self:RegisterForDrag("RightButton"); -->
			</OnLoad>
			<OnEvent>
				<!-- PCPButtonFrame_Init(); -->
				<!-- PCPButtonFrame_UpdatePosition(); -->
			</OnEvent>
		</Scripts>
	</Frame>




	<Frame name="PCPFrame" parent="UIParent" toplevel="true" enableMouse="true" movable="true">

		<Scripts>
			<!-- <OnLoad>PCPFrame:RegisterForDrag("LeftButton");PCPFrame:Hide();this:RegisterEvent("PLAYER_LOGIN");</OnLoad> -->
			<!--OnLoad>
				PCPFrame_OnLoad(self);
			</OnLoad-->
		</Scripts>

		<Scripts>
			<OnLoad>PCPFrame:RegisterForDrag("LeftButton");PCPFrame:Hide();self:RegisterEvent("PLAYER_LOGIN");</OnLoad>
			<OnDragStart>PCPFrame:StartMoving();</OnDragStart>
			<OnDragStop>PCPFrame:StopMovingOrSizing();</OnDragStop>
			<OnEvent>JoinWorld();</OnEvent>
		</Scripts>
User avatar
pumpan
Posts: 63

Re: PCP fix for 1.14 client (works with both clients)

Post by pumpan »

Yeah, something has changed. I will have to investigate further. In the meantime, you can try out PCPremake.
User avatar
pumpan
Posts: 63

Re: PCP fix for 1.14 client (works with both clients)

Post by pumpan »

I’ve identified the issue, some code was missing. The original fix was deleted from my PC, as I personally prefer PCPRemake. A new version will be released in the coming days.
User avatar
pumpan
Posts: 63

Re: PCP fix for 1.14 client (works with both clients)

Post by pumpan »

PCP Client 1.4.1
  • 🛠 **Fixed:** PCP minimap button not showing for everyone.
  • 🛠 **Fixed:** PartyBot Control Panel frame not movable.
  • 🔄 Version updated: From 1.4 to 1.4.1, indicating bug fixes.
:arrow: https://github.com/pumpan/PCP
Post Reply