Coder Social home page Coder Social logo

matronator / globalcollapse Goto Github PK

View Code? Open in Web Editor NEW
40.0 6.0 19.0 54.93 MB

Browser-based MMORPG based around the COVID pandemic. PWA supported.

Home Page: https://global-collapse.com

License: MIT License

PHP 12.36% JavaScript 34.40% HTML 0.12% CSS 44.53% Hack 0.04% Latte 8.55%
game pbbg browser-game php-game mmorpg pandemic mmo browser-based-games pwa pwa-apps

globalcollapse's Introduction

CSS3 HTML5 JavaScript PHP TypeScript PostCSS Go C# Kotlin Markdown SQL JSON Bash SVG Solidity Haxe

GitHub Stats

Matronator's GitHub stats Matronator's GitHub stats

GitRoll Profile Badge

Frameworks, Platforms, Libraries & Tools

NPM Laravel React TailwindCSS Symfony MySQL MariaDB NodeJS ESLint Git GitHub Postman Bootstrap Next JS jQuery Docker TOR Gulp Babel .Net Unity Express.js Svelte Angular Ethereum Bitcoin

Support

ko-fi

Bitcoin (BTC) address: 35VRpVQaqFWjUCnVRpGineShz76QyYgSVg

Monero (XMR) address: 84yS17W3dLvV6Lj2XaATgYX4Ef7tPpGtmdBoanyL68GofxM2VQD8ZUNWaKpdyerJdZ7mceQ6r7e8G2om6q6k8zEZ4ndy2xG

Stacks (STX) address (and any other SIP-10 tokens): SP39DTEJFPPWA3295HEE5NXYGMM7GJ8MA0TQX379

WakaTime Stats

Total time coded since Jul 23 2020

Top 20 languages used all time
(might be inaccurate at times)

Matronator's WakaTime stats


Repo of the week:

Amock - API Mock Server

Amock - API Mock Server

Amock is a simple API mock server that uses JSON files to define entities from which it auto-generates endpoints. It is useful for front-end developers who need to work with a back-end API that is not yet available.

Repo showcase

Global Collapse: Pandemic Feed The Flames - Game Concept MTRGen - File generator Bootstrap Theme Generator

globalcollapse's People

Contributors

dependabot[bot] avatar gerbenjacobs avatar imgbotapp avatar matronator avatar pase80 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

globalcollapse's Issues

[BUG] script(s) is incomplete

Iam tring to figure out how the "collect" on the buildings module works, i cant seem to find it
Howerver iam missing valuable parts of the game,

  • MySQL file is a mess, loads of errors
  • table "drugs_inventory" missing ???
  • Collect system is missing or not existing

PLEASE update the git to the latest working files please

Thx

Global Collapse Darknet

Hello,

I want to ask about the darknet: There are no requests for Meth since a long time, only MDMA? What is this?

Greetz, Yarblen

[HELP NEEDED] Need an artist for making illustrations for items (upcoming feature)

I'm working on a new feature which includes player inventory and items (weapons, armor, etc...). For the items I'm going to need a lot of illustrations/artwork, one for each item. Now there's going to be a lot of items - too many for me to handle creating the art on my own.

And so I'm looking for an artist or artists that would be interested in creating artwork for the items. Or if you want to contribute with only a few (or even just one) images, you can do that. Just pick an item from the list that you'd like to create and after you're done, post the image here.

Artwork quality

Before you start making something, you should know that posting an image doesn't necessarily guarantee that it will be used in the game. Low quality artworks won't be used and basically it's up to my discretion which one will go in the game. But if it looks good, it will probably be used.

PS: AI generated images are also allowed if they look good.

Attribution

If you contribute some artwork, your username or real name (whichever you prefer) will be added to the list of contributors that's going to be here in the README file and on some page on the website. However if you wish to contribute anonymously without being credited just say so when posting the image and I won't put your name anywhere.

List of items that need artwork

Armor
  • 4x Helmet (for the top of the head only, not the full-head-like type that speed bikers have)
  • 4x Shoulder armor
  • 4x Mask/facemask
  • 4x Leggings/leg armor
  • 4x Body armor
  • 4x Full-head headgear (helmet and mask in one, or a helmet that goes over the entire head and face)
  • 4x Boots/shoes
  • 4x Shield
Weapons
  • 2x Handgun
  • Shotgun
  • Assault rifle
  • 3x Melee weapon (like a club or baseball bat or something - be creative ;) )
  • 2x Daggers
  • 2x Knife
Other
  • TBD

Specifications

Each image must have a 1:1 ratio and be at least 256x256 pixels (ideally 512x512). The style of the artwork should be digital/concept art and the look of the items itself should fit into the post-apocalyptic world the game is set in. Here are some images to show what type of style and look I have in mind: 0 1 2 3 4 5 6

[BUG] Ajax not working while collecting

Describe the bug
when pressing Collect on the buildings page, does NOT increase your
I keep pressing collect but its not adding anything

To Reproduce
Steps to reproduce the behavior:
click "collect"

Expected behavior
A clear and concise description of what you expected to happen.

Move all text from templates to locale file

Lot of the UI text in the game is hardcoded in the template files (due to my laziness and poor planning ahead) and should be replaced with link to the locale file here.

So for example you'd change this:

app/modules/Front/templates/Default/default.latte

...
<ul class="uk-list uk-list-divider uk-margin-remove">
    <li>Level</li>
    <li>Money</li>
    <li>Energy</li>
</ul>
...

To this:

app/modules/Front/templates/Default/default.latte

...
<ul class="uk-list uk-list-divider uk-margin-remove">
    <li>{_general.stats.level.title}</li>
    <li>{_general.stats.money.title}</li>
    <li>{_general.stats.energy.title}</li>
</ul>
...

app/lang/general.en_US.neon

...
stats:
    level:
        title: 'Level'
    money:
        title: 'Money'
    energy:
        title: 'Energy'
...

If you want to help out with that, please search the locale file (CTRL+F / CMD+F) if there isn't an entry for the same phrase already before creating new entry to prevent duplicates.

No need to create an entry in the cs_CZ locale file as well, that can be translated later. Right now, the priority is English.

[BUG] Money runs into int32 overflow

Describe the bug
Money runs into int32 overflow. I sold 66,332,326 meth at $65 which should give me $4.311.601.190; however my balance turned to 2,147,483,647.

To Reproduce
Steps to reproduce the behavior:

  1. Sell drugs at Darknet resulting in more than $2,147,483,647

Expected behavior
66,332,326 * 65 should result in $4.311.601.190 in my wallet.

Desktop (please complete the following information):

  • OS: Windows
  • Browser: Chrome

[BUG] Darknet Page

Describe the bug
Darknet Page is not getting any weed sellers and the prices didn't change

To Reproduce
Steps to reproduce the behavior:

  1. Go to https://global-collapse.com/darknet
  2. Click on any refresh button
  3. Same seller but all with the same prices for the same drug

Expected behavior
Change in prices so we can buy low and sell high
Have at least one weed seller, because from the start of my journey I didn't see a weed seller and I have a lot of weed :)

Screenshots
https://freeimage.host/i/iHiDFa

Desktop (please complete the following information):

  • OS: Windows
  • Browser chrome, edge

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.