×

Langue

Fermer
Atelier 801
  • Forums
  • Dev Tracker
  • Connexion
    • English Français
      Português do Brasil Español
      Türkçe Polski
      Magyar Română
      العربية Skandinavisk
      Nederlands Deutsch
      Bahasa Indonesia Русский
      中文 Filipino
      Lietuvių kalba 日本語
      Suomi עברית
      Italiano Česky
      Hrvatski Slovensky
      Български Latviešu
      Estonian
  • Langue
  • Forums
  • /
  • Transformice
  • /
  • Discussions
  • /
  • [APP] Transformice Linux Standalone
1 / 5 › »
[APP] Transformice Linux Standalone
Antonio
« Sénateur »
1504828380000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#1
  32
  • Welcome
  • Installing
  • Keyboard Commands
  • Linux OS
  • Screenshots
  • Q&A
  • Logs
  • Thank you!

Transformice Linux Standalone

Transformice is a multiplayer game, where you play as a little mouse out to get cheese! With just over million of players, this deserve rewards. Sadly, me and a few people who play the game have problems setting up the Linux standalone. So, i decided to make my own with Node.js Electron. It's simple, easy, and open source!!



Made by NekoTony. I'm horrible at styling up threads so if someone wants to redo it and inbox me then be my guest. I might style it up later. just putting the main info down.

Why make a linux when there is already one
Yes, there is one but it's not the best standalone. There has been multiple reports of it not working and causing problems to a lot of people. Plus, no one wants to use wine to run the applications. I already tried it once, and it kept returning invalid error. This is an alternate way of running the application on Linux.


Installing
Ignore the comments after the #hashtag. The simplest way to install the app is by installing with the .deb file. You can install it by opening the app or this way (Recommended):

1
2
3
4
5
arch 
#If arch shows x86_64 then do this
URL='http://alicebot.pw/deb/transformice_x64.deb'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE
#otherwise do this
URL='http://alicebot.pw/deb/transformice_x32.deb'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE

How to install for ArchLinux by @Leoteodoro (Try this if your OS doesn't support .deb files)


1. Create a file named PKGBUILD and paste this inside it:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pkgname=transformiceforlinux
pkgver=1.0.7
pkgrel=1
pkgdesc=an unofficial standalone for transformice
arch=('x86_64')

source=("http://alicebot.pw/deb/transformice_x64.deb")
sha256sums=('SKIP')

package(){
cd "${srcdir}"
ar x transformice_x64.deb
tar xfv data.tar.xz -C "${pkgdir}"
chmod -R go-w "${pkgdir}"/usr
}

2. Then open a terminal where you saved the PKGBUILD and run this command:

1
makepkg -si

or if you want it as a .pkg.tar.xz, do:

1
makepkg

After this, the file should be completed. You should be able to open the app like any other application.

Original Message
Leoteodoro a dit :
the nekotony's standalone for archlinux...
make a file called PKGBUILD and paste it inside it:

pkgname=transformiceforlinux
pkgver=1.0.7
pkgrel=1
pkgdesc=an unofficial standalone for transformice
arch=('x86_64')

source=("http://nekotony.pro/deb/transformice_x64.deb")
sha256sums=('SKIP')

package(){
cd "${srcdir}"
ar x transformice_x64.deb
tar xfv data.tar.xz -C "${pkgdir}"
chmod -R go-w "${pkgdir}"/usr
}


open a terminal where you are (or where you saved the PKGBUILD)
and just "makepkg -si" on it...

the standalone is installed successfully

i tested it and it works fine!



Other Installing (Do not use unless last resort)


Installing the app is quite simple. Open up a terminal (CTRL + T) and type in these commands. Ignore the comments after the #hashtag.


1
2
3
4
5
6
sudo apt-get update #update packages
sudo apt-get install git #install git
sudo apt-get install nodejs #install Node.js
git clone https://github.com/NekoTony/Transformice-Linux.git #Clone Repo
cd Transformice-Linux #Open Directory
npm install #Installing Application packages

After that, you can run the app like this:

1
npm start #This is the command TO START THE APP

Everything below the --- is not required to run the app, just if you want to make a desktop app.

If you would like it in a desktop application with `electron-package` then run this:

1
npm run-script package #This if you want a .desktop file

Make sure you edit the scripts/package field in package.json to the right data. Here's a template:


1
2
3
4
"scripts": {
"start": "electron main.js",
"package": "npm install --save-dev electron-packager && electron-packager ./ --linux --out {folder to save desktop application with.} --version 1.0.1 --overwrite --icon={replace me with directory to icon.png in the source file.}"
}

Keyboard Commands
- CTRL+SHIFT+q - Quit the Application, wazzah!
- CTRL+SHIFT+f - Make the app, well fullscreen!
- CTRL+SHIFT+h - Load the Home Page
- CTRL+SHIFT+m - Hide App/Minimize it
- CTRL+SHIFT+a - Load Atelier801 Forums Page
- CTRL+SHIFT+t - Load Transformice Game



Linux Versions
Here's a list of Linux Dists that work well with this application:


a dit :
Ubuntu 16.04 Xerial x86 - Worked well with @NekoTony (Proof: I tested it on there)

If you got this working on another Linux Os, post the steps here. I'll add it.


Screenshots


In-Game Proof
http://i.imgur.com/kffe3dy.png

In-Game Proof 2
https://i.imgur.com/c6SxGHN.png

Homepage
http://i.imgur.com/9BApnEy.png

Got a screenshot while using the application? I'll add it.


Questions and Answers
Being new it all, you might run into some issues or questions. Here are a few i can think of, just for you!

Q. Is Transformice-Linux open source?
Of course. The application is basically just html/css on an application so if you do want to help out then please, the code is here.

Q. Getting a can't load plugin error. What's wrong?
That means there was a problem using the flash plugin provided in the folder. This might happen to x32 devices. One way to fix this is (I'll post it tomorrow)

Q. What if my OS doesn't appear in Linux OS?
It doesn't mean you can't run the application, it just means no one has tested it out on other versions of Linux. As long as you install Git and Node.Js, you'll be fine. If you got it working on another OS, tell us in the comments.

Q. Do i have to run npm start every time?
Sadly, you do unless you use electron-packager. Commands are available in the Installing Tab,

Q. I don't see the exit button? Where is it?
It's currentlly hidden within our code and it won't be changed due to design reasons. If you want to add it though, open the main.js file, find "frame" on line 34 and change it to true. You can also exit the app by doing CTRL+e. More commands in Keyboard Commands

Q. What is this app made out of? Is it safe?
It's made out of HTML/CSS/JS and yes, it's safe

Change Logs


Current version 1.0.5


Change Log v1.0.5

Changelog 1.0.5
--------------------------------------------------------
- Redesign of the home page.
Look for yourself
http://i.imgur.com/9BApnEy.png
- Created .deb files so you can easily install it as an application on your OS. Tested transformice_x64.deb on Ubuntu 16.04 x64 and worked perfectly. Created with electron-installer-debian.
- Formatted Code with Beautifier and organized the app.
- Changed Keyboard from Ctrl+f to Ctrl+Shift+f. You can also close the app by right clicking it.
- Fixed a few bumps


Best way to install apps thru .deb is following these steps (Ignore the stuff after #):
1
2
3
4
5
6
7
8
sudo apt-get install git #install git
git clone https://github.com/NekoTony/Transformice-Linux.git #Clone Repo
cd Transformice-Linux #Open Directory
arch
#If arch shows x86_64 then do this
sudo dkpg -i Transformice_x64.deb
#otherwise do this
sudo dkpg -i Transformice_x32.deb


http://nekotony.pro/img/ava-250-nekotonyy

Thank you for checking out [APP] Transformice Linux Standalone!
Please check out my other projects and i'm always open to suggestions.

  • [Showcase] NekoTonyy's Profile Decorations | link
  • [A801] Atelier801 Drafts | link
  • Nekotonyy's Ridonculous Maps | link
  • [APP] Transformice Linux Standalone | link
  • r/A801 - Let's revive our Reddit community! | link
Here are some other things you might enjoy:
  • NekoTony's Discord Server (Over 1K) | link
  • NekoTonyy attempt of making a big thread. Care to help out? | link

If you have any suggestions then feel free to inbox me or join the discord server. I handle all projects (Atelier801 related and non--Atelier801 related projects) support and suggestions on that specific discord server. Well, most of the time that's.


Dernière modification le 1522164540000
Jeno
« Citoyen »
1504830300000
    • Jeno#1865
    • Profil
    • Derniers messages
    • Tribu
#2
  0
this threat is so cool good job!
Antonio
« Sénateur »
1504830360000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#3
  2
Overrlook a dit :
this threat is so cool good job!

Thread* and thanks!
Hmiida
« Consul »
1504834200000
    • Hmiida#0000
    • Profil
    • Derniers messages
    • Tribu
#4
  2
It will be very useful for Linux users, thanks http://img.atelier801.com/3424f143.png
Antonio
« Sénateur »
1504868760000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#5
  1
Hmiida a dit :
It will be very useful for Linux users, thanks http://img.atelier801.com/3424f143.png

No problem!
Ae_86
« Consul »
1504892940000
    • Ae_86#5182
    • Profil
    • Derniers messages
    • Tribu
#6
  2
So you managed to come through and pull it off in the end, nice. Hats off to you and good quality thread right here.
Antonio
« Sénateur »
1504900800000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#7
  1
Deltarubee a dit :
So you managed to come through and pull it off in the end, nice. Hats off to you and good quality thread right here.

Thank you!
Hajime
« Censeur »
1504989660000
    • Hajime#4693
    • Profil
    • Derniers messages
    • Tribu
#8
  0
i heard that u can download a program on Linux to play some Windows games
Antonio
« Sénateur »
1504995540000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#9
  7
Ravenwingsss a dit :
i heard that u can download a program on Linux to play some Windows games

It's crappy and buggy. Used wine with the application and it was horrible for me. On Ubuntu 16.04, Adobe Photoshop kept crashing AND Transformice kept returning invalid version error (which i think i saw a few posts other then me reporting this). It's not a method i'll personally recommended to anyone.

---

Changelog 1.0.5
--------------------------------------------------------
- Redesign of the home page.
Look for yourself
http://i.imgur.com/9BApnEy.png
- Created .deb files so you can easily install it as an application on your OS. Tested transformice_x64.deb on Ubuntu 16.04 x64 and worked perfectly. Created with electron-installer-debian.
- Formatted Code with Beautifier and organized the app.
- Changed Keyboard from Ctrl+f to Ctrl+Shift+f. You can also close the app by right clicking it.
- Fixed a few bumps


Best way to install apps thru .deb is following these steps (Ignore the stuff after #):
1
2
3
4
5
6
7
8
sudo apt-get install git #install git
git clone https://github.com/NekoTony/Transformice-Linux.git #Clone Repo
cd Transformice-Linux #Open Directory
arch
#If arch shows x86_64 then do this
sudo dkpg -i Transformice_x64.deb
#otherwise do this
sudo dkpg -i Transformice_x32.deb

App should show in applications afterwards....

Dernière modification le 1505524680000
Antonio
« Sénateur »
1505305980000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#10
  1
I plan on making a windows version of this but will anyone be willing to test it?
Ayumiouo
« Consul »
1505318940000
    • Ayumiouo#0000
    • Profil
    • Derniers messages
#11
  2
Nekotonyy a dit :
I plan on making a windows version of this but will anyone be willing to test it?

I'd be willing to ^^
I have a Windows 8 laptop, so that should work out.
(that, and I could test it to see if it runs on slower computers since mine is kind of like that.)
Antonio
« Sénateur »
1505523420000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#12
  1
Ayumiouo a dit :
Nekotonyy a dit :
I plan on making a windows version of this but will anyone be willing to test it?

I'd be willing to ^^
I have a Windows 8 laptop, so that should work out.
(that, and I could test it to see if it runs on slower computers since mine is kind of like that.)

Would you be able to install nodejs and run a command within terminal that generates the .exe install file?

Dernière modification le 1505525340000
Antonio
« Sénateur »
1506087780000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#13
  2
Ill add commands for other atelier801 games and fansites sometime this weekend.
Antonio
« Sénateur »
1506358920000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#14
  2
Changelog 1.0.6
--------------------------------------------------------
- Touch up on home design
- Added keyboard shortcut for Anvilgod.com (Ctrl+Shift+v)
- Added keyboard shortcut for Bouboum.com (Ctrl+Shift+b)
- Added keyboard shortcut for Fortoresse.com (Ctrl+Shift+z)
- Added keyboard shortcut for Nekodancer.com (Ctrl+Shift+n)
- New method of installation.
- Atelier801 link redirects /index now instead of /forums


Best way to install the app is thru .deb is following these steps (Ignore the stuff after #):

1
2
3
4
5
arch 
#If arch shows x86_64 then do this
URL='http://nekotony.pro/deb/transformice_x64.deb'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE
#otherwise do this
URL='http://nekotony.pro/deb/transformice_x32.deb'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE
Massi
« Consul »
1506428040000
    • Massi#0095
    • Profil
    • Derniers messages
    • Tribu
#15
  0
Great work ! can i translate this topic from English to Arabic ?
Antonio
« Sénateur »
1506433560000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#16
  3
Unlocker001 a dit :
Great work ! can i translate this topic from English to Arabic ?

Go right ahead.
Ceapasy
« Censeur »
1506434400000
    • Ceapasy#4992
    • Profil
    • Derniers messages
    • Tribu
#17
  1
Great job! Very cute theard
Antonio
« Sénateur »
1506471900000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#18
  2
Onionsy a dit :
Great job! Very cute theard

Thank you! Still need someone that has windows to convert this to windows.

Dernière modification le 1506471960000
Kit
« Archonte »
1506476280000
    • Kit#9532
    • Profil
    • Derniers messages
    • Tribu
#19
  0
i have a windows 10 computer if you're still looking for someone to test the windows version ^^
Antonio
« Sénateur »
1506476400000
    • Antonio#9975
    • Profil
    • Derniers messages
    • Tribu
#20
  3
Kaekat a dit :
i have a windows 10 computer if you're still looking for someone to test the windows version ^^

Feel free to hit me up with a direct message then.
  • Forums
  • /
  • Transformice
  • /
  • Discussions
  • /
  • [APP] Transformice Linux Standalone
1 / 5 › »
© Atelier801 2018

Equipe Conditions Générales d'Utilisation Politique de Confidentialité Contact

Version 1.27