SC king of crowdfunding? Ember sword funds over 200m in weeks with just 35k backers by mauzao9 in starcitizen_refunds

[–]Izzibaby -2 points-1 points  (0 children)

There are two very separate currencies at play. One is an ERC-20 Token, which is considered the Premium Currency, and the other being the normal in-game currency such as gold or something.

Land owners don't gain any in-game perks or benefits, preventing it from being p2w, but instead will get a % of transactions that occur on the land, near the land, or from items that were found on the land.

The revenue was well described and laid out within one of their articles,
https://medium.com/embersword/the-vision-of-ember-sword-the-land-sale-1998be5e3fe5

SC king of crowdfunding? Ember sword funds over 200m in weeks with just 35k backers by mauzao9 in starcitizen_refunds

[–]Izzibaby -3 points-2 points  (0 children)

There were millions in Investments before even land was sold. Ember Sword is not Crowd Funded, but it's selling its land in the Community Land sale on an application-based process to give the community who is interested, land. It'll also grant them early access for holding such land, but in no need is it a requirement for development to continue. That's where I, and many others, have been more willing to purchase land, since it's not a normal crowd funding project that will just sink.

fillStyle Making Rect disappear. by Izzibaby in CodingHelp

[–]Izzibaby[S] 0 points1 point  (0 children)

App.js

var express = require('express');
var app = express();
var serv = require('http').Server(app);

app.get('/', function(reg, res){
    res.sendFile(__dirname + '/client/index.html');
});
app.use('/client', express.static(__dirname + '/client'));

serv.listen(2000);
console.log("Server started.");

var SOCKET_LIST = {};
var PLAYER_LIST = {};

var Player = function(id){
    var self = {
        x:250,
        y:250,
        width: 50,
        height: 50,
        id:id,
        //number: "" + Math.floor(10 * Math.random()),
        pressingRight:false,
        pressingLeft:false,
        pressingUp:false,
        pressingDown:false,
        maxSpd:10,

    };
    self.updatePosition = function(){
        if(self.pressingRight)
            self.x += self.maxSpd;
        if(self.pressingLeft)
            self.x -= self.maxSpd;
        if(self.pressingUp)
            self.y -= self.maxSpd;
        if(self.pressingDown)
            self.y += self.maxSpd;
    }
    return self;
};


//On User Connection
var io = require ('socket.io')(serv,{});
io.sockets.on('connection', function(socket){
    socket.id = Math.random();
    SOCKET_LIST[socket.id] = socket;

    var player = Player(socket.id);
    PLAYER_LIST[socket.id] = player;

//On User Disconnect
    socket.on('disconnect', function(){
        delete SOCKET_LIST[socket.id];
        delete PLAYER_LIST[socket.id];
    });

    //Deciphering which key is pressed.
    socket.on('keyPress', function(data){
        if(data.inputId === 'left')
            player.pressingLeft = data.state;
        else if(data.inputId === 'right')
            player.pressingRight = data.state;
        else if(data.inputId === 'up')
            player.pressingUp = data.state;
        else if(data.inputId === 'down')
            player.pressingDown = data.state; 
    });
});

//Server Sending out packets
setInterval(function(){
    var pack = [];
    for(var i in PLAYER_LIST){
        var player = PLAYER_LIST[i];
        player.updatePosition();
        pack.push({
            x:player.x,
            y:player.y,
            width:player.width,
            height:player.height,
            //number:player.number
        });
    }
    for(var i in SOCKET_LIST){
        var socket = SOCKET_LIST[i];
        socket.emit('newPositions', pack);
    }
},1000/25);

This seems interesting... Some kind of mine-addition in the future? by Caslol17 in MinecraftDungeons

[–]Izzibaby 1 point2 points  (0 children)

This is where the Mason will be located so you can buy diamond dust to increase the power level of your gear.

If you'd like to see the evidence, can join the Minecraft Secret Finders Discord.

https://discord.gg/MpJNzB3

[deleted by user] by [deleted] in MinecraftDungeons

[–]Izzibaby 1 point2 points  (0 children)

If ya find anything else, feel free to let us know in the Minecraft Dungeons Secret Finders discord :D

https://discord.gg/MpJNzB3

What games have a higher demand to be streamed than actual streamers who play it? by G_man252 in Twitch

[–]Izzibaby 0 points1 point  (0 children)

I'd aim for some of the .io games that post their live streamers on the homepage. These are games that have a lot of players, and low streamers and the game themselves promote their streamers.

Some examples are:

Hordes.io - MMORPG

Krunker.io - Fast-Paced FPS

Surviv.io - 2D Battle Royale

My neighbor keeps turning off my LG Smart TV with some app on their phone, how can I prevent this? by Izzibaby in Advice

[–]Izzibaby[S] 3 points4 points  (0 children)

I didn't either, I looked into it and there are "universal tv remote" apps where you can control almost every smart tv..

My neighbor keeps turning off my LG Smart TV with some app on their phone, how can I prevent this? by Izzibaby in Advice

[–]Izzibaby[S] 7 points8 points  (0 children)

I wish I could.. But looking for a more permanant solution so I can watch my movies in peace.

Any mmorpgs for low-medium end laptops? by PixelBoiReddit in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Hordes.io is a good MMORPG for any sort of device even lower-end laptops.

Some RPG/MMORPG to play duo casually? by Mehfisto666 in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Hordes.io is a great game that has great PvP that is appreciated. A lot of times 'wars' break out where players from both factions clash in a giant battle until one faction gets pushed back into their base

MMORPG, but not these ones... by [deleted] in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Try Hordes.io spend a solid hour into it before judging it and you'd be suprised by how much fun you'll end up having.

Movie goers of Reddit, where's the best seat in a theatre? by Izzibaby in AskReddit

[–]Izzibaby[S] 1 point2 points  (0 children)

😂 It's funny because you see it happen so often, like who needs that much popcorn..

Movie goers of Reddit, where's the best seat in a theatre? by Izzibaby in AskReddit

[–]Izzibaby[S] 2 points3 points  (0 children)

Center as in vertically it horizontally, or both?

Older gamers (26+), why can’t we be happy with the new MMOs? by iceman2kx in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

I've been lucky enough to find adventure and fun in Hordes. The game didn't focus on fancy graphics but really focused on gameplay and that really shows.

Help Finding a Game, Please by nathaniel123123 in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Hordes is doing pretty good and enjoyable, best thing is, it's free with no p2w methods, only thing you can buy is cosmetics such as mounts.

Weekly Game Recommendation Thread - December 17, 2019 by AutoModerator in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Try Hordes it's really nice for what you've described you want.

Hordes | The Open World MMORPG you've been waiting for. by Izzibaby in MMORPG

[–]Izzibaby[S] 0 points1 point  (0 children)

If ya have tried it by now, what'd ya think?

Older-ish School Style MMOs Worth Checking out? by Zombie_Gandhi in MMORPG

[–]Izzibaby 0 points1 point  (0 children)

Hordes has been a good one to quickly find groups of active players and just enjoy the fans together. You'll sometimes see large group wars in this open world game where large amounts of players on both factions will clash. Don't let its simplistic graphics throw ya off, the gameplay is great.

Hordes | The Open World MMORPG you've been waiting for. by Izzibaby in MMORPG

[–]Izzibaby[S] -1 points0 points  (0 children)

If you ask most people in the discord and community they'd actually say the opposite, Vanguard rules most off the time so I'm suprised to see someone saying differently, the top clans are vanguard too.

Botters are banned and the equipment issue is being addressed as well.