phantom icon indicating copy to clipboard operation
phantom copied to clipboard

Can you put it simplier?

Open Rosslewi84 opened this issue 4 years ago • 2 comments

i just wanna join servers in minecraft ps4. Can you do like a step by step on windows? or make it easier for a stupid person like me?

Rosslewi84 avatar Apr 28 '20 13:04 Rosslewi84

? download the precompiled exe: https://github.com/jhead/phantom/releases

put it in some directory. go there.

create a batch script there with something like

@echo OFF

cls

cd /d %~dp0

:lo

phantom.exe -server "192.168.1.1:19132"

goto lo

exit /b 0

this is a loop. it will forward to the host 192.168.1.1:19132 (a pocketmine server for example) start it

the server should appear in the lan list.

blubbll avatar Apr 30 '20 17:04 blubbll

download this: https://github.com/jhead/phantom/releases/download/v0.5.1/phantom-windows.exe create a batch script (here is a tutorial on how to do it): https://www.makeuseof.com/tag/write-simple-batch-bat-file/ but instead, put this inside it using notepad. Note: Replace SERVER-IP, and SERVER-PORT with the server IP and port

@echo off
phantom-windows.exe -server SERVER-IP:SERVER-PORT
exit

save it, then run it. If you did this correctly, it should have a command prompt open saying something along these lines.

Starting up with remote server IP: example.com:25565
←[90m2:29AM←[0m ←[32mINF←[0m Binding ping server to port 19132
←[90m2:29AM←[0m ←[32mINF←[0m Starting idle connection handler
←[90m2:29AM←[0m ←[32mINF←[0m Binding proxy server to: 0.0.0.0:55665
←[90m2:29AM←[0m ←[32mINF←[0m Proxy server listening!
←[90m2:29AM←[0m ←[32mINF←[0m Once your console pings phantom, you should see replies below.

lukemagdalin avatar Jul 04 '20 06:07 lukemagdalin