Jump to content

Simplicity
FORUMS

Sign in to follow this  
Terpy

A quick fix for a client that wont launch WINDOWS ONLY

Recommended Posts

Terpy    6

So there a a few reasons why your client wont launch, some of which are harder to explain the others. A common issue is file association  and if you dont know how to change that or dont care to, these 3 lines of text will launch your client:

Spoiler

java -jar clientName.jar

where clientName.jar is the name of your client Version either gamepack+.jar or gamepack.jar

save that in a notepad document and change the .txt file extension to .bat. Then place the bat file in your cache at users/userName/.SimplicityCache

I dont know if this kind of post is okay but i couldnt seem to find the right person to ask about that, best of luck everyone!

 

if you have python this works just as well with Popen, possibly an option if your not on windows. just change the arguments in p:

from subprocess import Popen, PIPE, STDOUT
p = Popen(['java', '-jar', 'gamepack.jar'], stdout=PIPE, stderr=STDOUT)
for line in str(p.stdout)
    print(line)

 

Edited by Terpy

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

DOWNLOAD & PLAY
FOR FREE TODAY!

play now
×
×
  • Create New...