Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

G-EnterFullRoom #101

Open
wants to merge 36 commits into
base: repo/1.5.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
76b71a2
Create test
HabboMaik Jun 29, 2022
9f5e71f
Add files via upload
HabboMaik Jun 29, 2022
869898b
Add files via upload
HabboMaik Jun 29, 2022
29c9cc7
Delete store/extensions/Enter Full Room directory
HabboMaik Jun 29, 2022
48f8cd0
Create README.md
HabboMaik Jul 10, 2022
3731647
Add files via upload
HabboMaik Jul 10, 2022
49e9f4c
Update extension.json
HabboMaik Jul 10, 2022
ffaf25b
Add files via upload
HabboMaik Jul 10, 2022
62edd94
Update extension.json
HabboMaik Jul 11, 2022
9242165
Update extension.json
HabboMaik Jul 11, 2022
445c812
Update extension.json
HabboMaik Jul 11, 2022
675dfd4
Add files via upload
HabboMaik Jul 11, 2022
15d2505
Delete download.png
HabboMaik Jul 11, 2022
4d0a052
Add files via upload
HabboMaik Jul 11, 2022
ff026f8
Update README.md
HabboMaik Jul 11, 2022
07e8405
Update README.md
HabboMaik Jul 13, 2022
e425b83
Update README.md
HabboMaik Jul 13, 2022
4fd92cc
Update README.md
HabboMaik Jul 13, 2022
d4a7406
Update README.md
HabboMaik Jul 13, 2022
471c3d3
Update README.md
HabboMaik Jul 13, 2022
83e2eae
Update README.md
HabboMaik Jul 13, 2022
07c586a
Update README.md
HabboMaik Jul 13, 2022
26c727c
Update README.md
HabboMaik Jul 13, 2022
cedf6e9
Update extension.json
HabboMaik Jul 13, 2022
eb15de4
Update extension.json
HabboMaik Jul 13, 2022
a9ad7e8
Add files via upload
HabboMaik Jul 13, 2022
15e4828
Update README.md
HabboMaik Jul 13, 2022
5f3f1f4
Delete README.md
HabboMaik Jul 13, 2022
d34f2e8
Add files via upload
HabboMaik Jul 13, 2022
9d5c8be
extension.zip added
HabboMaik Jul 13, 2022
25c1408
Update extension.json
HabboMaik Jul 13, 2022
56a9cd2
Add files via upload
HabboMaik Jul 13, 2022
7b17cc5
Add files via upload
HabboMaik Jul 13, 2022
aab5c59
Update store/extensions/G-EnterFullRoom/extension.json
HabboMaik Jul 13, 2022
8b53891
Update store/extensions/G-EnterFullRoom/extension.json
HabboMaik Jul 13, 2022
da1579b
Update extension.json
HabboMaik Jul 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions store/extensions/G-EnterFullRoom/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# G-EnterFullRoom
Copy link
Collaborator

@WiredSpast WiredSpast Jul 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't put any other files except the permitted/mandatory files into the folder.

Permitted/mandatory files:

  • extension.json (mandatory)
  • extension.zip (mandatory)
  • icon.png (permitted)
  • screenshot.png (permitted)


With this extension you can enter a full room **automatically** when someone leave the room.

## How to use?
1. Enter the **full** room you want to get in.
2. Click on **"Activate"**.
3. **Now just wait!**
You will get automatically in, when someone leave the room.

## Screenshot
<p align="center">
<img src="https://i.imgur.com/Ynpub62.png" />
</p>

## Credits/Thanks
- **JustProDylan** (*for developing this extension*)
45 changes: 45 additions & 0 deletions store/extensions/G-EnterFullRoom/extension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"title": "G-EnterFullRoom",
"description": "Enter a full room automatically when someone leave.",
"authors": [
{
"name": "HappyBoyx3",
"hotel": ".de",
"username": "HappyBoyx3",
"discord": "MAIK#5094",
"twitter": "HabboMaik"
},

{
"name": "JustProDylan",
}
],
"version": "1.0",
"categories": ["Usability", "Others"],

"source": "https://github.com/HabboMaik/G-ExtensionStore/blob/repo/1.5.2/store/extensions/G-EnterFullRoom/",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The source repository must be a repository with the open source code, not your own fork of the store repository (Same for the readme)

"readme": "https://github.com/HabboMaik/G-ExtensionStore/blob/repo/1.5.2/store/extensions/G-EnterFullRoom/README.md",
"releases": ""
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove it if you're not adding a releases page


"stable": true,

"framework": {
"name": "Geode",
"version": "1.5"
},
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to my decompiler the Geode version which was used is 1.4.1.0 not 1.5

Suggested change
"framework": {
"name": "Geode",
"version": "1.5"
},
"framework": {
"name": "Geode",
"version": "1.4.1.0"
},


"language": "Java",
"commands": {
"default": ["java", "-jar", "GClick.jar", "-c", "{cookie}", "-p", "{port}", "-f", "{filename}"],
"linux": ["(optional) <some OS-specific command...>"]
},
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The framework used is listed as Geode but the language is listed as Java, since Geode is a .NET language this isn't possible, also remove the linux command if it's not different from the default

Copy link
Author

@HabboMaik HabboMaik Jul 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope its right after changes..


"compatibility": {
"systems": ["Linux", "Windows", "Mac"],
"clients": ["Unity", "Flash"]
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're sure this one works for unity too?

Copy link
Collaborator

@WiredSpast WiredSpast Jul 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I now Geode extensions only work on Windows
Geode also only works for Flash (unless you specify the header ids yourself, but I don't think you did)

},

"submissionDate": "11-07-2022 00:00:00",
"updateDate": "11-07-2022 00:00:00",
"isOutdated": false
}
Binary file added store/extensions/G-EnterFullRoom/extension.zip
Binary file not shown.
Binary file added store/extensions/G-EnterFullRoom/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added store/extensions/G-EnterFullRoom/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.