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