नवीनतम वीडियो

goto64
1,085 विचारों · 2 वर्षों पहले

MegaFactory is a base building / tycoon game which I am currently developing. A free demo of the current alpha state of the game is available here: https://goto64.itch.io/megafactory This video uses royalty free music: Kalte Ohren by Alex, ft. starfrosch & Jerry Spoon. (c) copyright 2019 Licensed under a Creative Commons Attribution (3.0) license. Horizon by Francisco Sánchez Gómez. 00:00 Introduction 00:24 Tutorial gameplay 11:20 Late-game factory walkthrough

goto64
465 विचारों · 2 वर्षों पहले

The new area Ulukita has a herb gathering spot that can rival the one at Behr. Great for maximizing your gathering XP.

goto64
854 विचारों · 2 वर्षों पहले

In the game Desynced, I show how you can put together a small combat squad that can operate outside your base power grid. The squad has an automated behavior to patrol around a beacon.

goto64
2,320 विचारों · 2 वर्षों पहले

In the game Desynced, I show you how you can create a behavior for a dedicated transport bot to efficiently pick up items from factory buildings and move them to remote storage.

goto64
841 विचारों · 2 वर्षों पहले

In the upcoming game Desynced, I try to create an optimal setup for producing metal plates at a remote mining location.

goto64
126 विचारों · 4 वर्षों पहले

Timberborn demo gameplay with light commentary. 00:00 - Early game 21:10 - First dry season 24:20 - Second wet season 42:00 - Second dry season 43:51 - Unlocking the monument 46:25 - Monument completed

goto64
4,280 विचारों · 6 वर्षों पहले

The mechanics and prices for imperial cooking changed quite a bit with the patch 6-Nov-2019. In this video I have a look at the consequences and what items you should now produce to make a good profit.

goto64
977 विचारों · 6 वर्षों पहले

Completing the achievements "Puzzle Solver" and "Sprinter" in the game ISLANDERS. Royalty Free Music from Bensound.

goto64
55,171 विचारों · 8 वर्षों पहले

Guide on how to construct the Epheria Frigate in Black Desert Online. The frigate is a combat ship with more cannons and higher speed compared to the Epheria Sailboat. This guide covers: Materials needed and how to get them Daily quests for materials (10:00) Frigate ship design daily quest (17:00) How to build the ship in the shipyard (18:00)

goto64
8,107 विचारों · 8 वर्षों पहले

This guide covers both AFK auto fishing and active hotspot fishing. The part about active hotspot fishing starts at 9:55. Maybe I was not quite clear about this in the video, but I can only recommend active fishing if you have master 2 trading as well.

goto64
2,225 विचारों · 8 वर्षों पहले

Guide on how you can start using NPC workers for gathering. Gathering with NPC workers provide you with extra passive income while you play the game. This video explains the node system, contribution points, how to hire workers and assign them to nodes, as well as how to recover the stamina of your workers so that they can keep working. Recommended web site: http://http://www.somethinglovely.net/bdo/

goto64
1,822 विचारों · 8 वर्षों पहले

In Black Desert Online, one of the most efficient ways of earning contribution is daily quests. This guide shows you how you can earn 2860 contribution in about 1 hour. As a bonus you will also earn some gathering, processing, cooking, strength and stamina experience. The following quests are done in this video: Mansha Forest (800 Contribution, 15-20 minutes) 200 - Agressive Manshas 200 - My Sweet Revenge 200 - Make a Mob 200 - Rhutums Disturbance Operation Olvia (730 - 970 Contribution, 10-15 minutes) 70 - Milkin' the Potion 50 - Young Shepherd 40 - Everyone Loves Cheese 70 - A Glass of Beer 70 - Good Snack 120 - A Poultry Dish (Needs chicken meat) 120 - Sady's Tool Supply 70 - Julietta's Hobby 120 - Daily Training 120 - Old Tree (Optional) 120 - Reed of the Spirits (Optional) Heidel (270 Contribution, 2 minutes) 90 - Lara's New Challenge 90 - Versatile Maple (10 maple) 90 - Flavianos Cronic Disease Stonetail Horse Ranch (500 contribution, 5 minutes) 100 - Better Safe than Sorry 100 - How to Get the Best Milk 100 - A Goblin Afraid of Horses 100 - Safety Guard at the Race Grounds 100 - An Eye on the Grain Sarma Outpost (560 contribution, 10-15 minutes) 120 - Make Them Sleep Outside 120 - Agitating the Enemy Camp 120 - Become the Spearhead 100 - Get supplies from the Enemy Camp 100 - Rocks for a Falling Rock Attack Total 2860 contribution / day (not counting the two optional quests)

goto64
19,399 विचारों · 8 वर्षों पहले

A little guide on how you can construct the new personal ship, the Epheria Sailboat. This is a new ship that was introduced in the Magoria expansion. I have some Black Desert 7-day guest passes to give away. If you would like one, either let me know in a comment (requires that you can receive private messages on Youtube) or send me a PM with your email address.

goto64
1,526 विचारों · 9 वर्षों पहले

A guide to the conversations mini-game in Black Desert Online. This guide provides detailed information on how maximum favor and accumulated favor is calculated, how combos work, as well as guidelines on how to select topics for high amity gain. I have some Black Desert 7-day guest passes to give away. If you would like one, either let me know in a comment (requires that you can receive private messages on Youtube) or send me a PM with your email address.

goto64
814 विचारों · 9 वर्षों पहले

A bit of gameplay from the Diablo 1 retro mode which has been made to celebrate the 20 years anniversary of Diablo. Spoiler alert: The final battle with Diablo is shown in this video.

goto64
5,093 विचारों · 9 वर्षों पहले

A little guide for the game Screeps, on how to mine minerals and make your first credits by selling some to a market order. Screeps is a real-time strategy Javascript-programming game. Code used in the video: -------------------- Extractor -------------------- var roleExtractor = { /** @param {Creep} creep **/ run: function(creep) { if (creep.memory.extracting && creep.carryCapacity == _.sum(creep.carry)) { creep.memory.extracting = false; } if (!creep.memory.extracting && 0 == _.sum(creep.carry)) { creep.memory.extracting = true; if (creep.ticksToLive < 200) { creep.suicide(); } } if (creep.memory.extracting) { var target; if (creep.memory.depositId) { target = Game.getObjectById(creep.memory.depositId); } else { var targets = creep.room.find(FIND_MINERALS); target = targets[0]; creep.memory.depositId = target.id; creep.memory.mineralType = target.mineralType; } if (creep.harvest(target) == ERR_NOT_IN_RANGE) { creep.moveTo(target); } } else { if (creep.room.terminal) { if (creep.transfer(creep.room.terminal, creep.memory.mineralType) == ERR_NOT_IN_RANGE) { creep.moveTo(creep.room.terminal); } } else if (creep.room.storage) { if (creep.transfer(creep.room.storage, creep.memory.mineralType) == ERR_NOT_IN_RANGE) { creep.moveTo(creep.room.storage); } } } } }; module.exports = roleExtractor; -------------------- Sell to market order -------------------- // Terminal trade execution if (spawn.room.terminal && (Game.time % 10 == 0)) { if (spawn.room.terminal.store[RESOURCE_ENERGY] >= 2000 && spawn.room.terminal.store[RESOURCE_HYDROGEN] >= 2000) { var orders = Game.market.getAllOrders(order => order.resourceType == RESOURCE_HYDROGEN && order.type == ORDER_BUY && Game.market.calcTransactionCost(200, spawn.room.name, order.roomName) < 400); console.log('Hydrogen buy orders found: ' + orders.length); orders.sort(function(a,b){return b.price - a.price;}); console.log('Best price: ' + orders[0].price); if (orders[0].price > 0.7) { var result = Game.market.deal(orders[0].id, 200, spawn.room.name); if (result == 0) { console.log('Order completed successfully'); } } } } -------------------- View order on console -------------------- JSON.stringify(Game.market.getAllOrders(order => order.resourceType == RESOURCE_GHODIUM && order.type == ORDER_SELL && Game.market.calcTransactionCost(200, 'W12N64', order.roomName) < 500));

goto64
194 विचारों · 9 वर्षों पहले

A first look at some of the new features and changes in "Knights of the Eternal Throne", the latest expansion for "Star Wars The Old Republic". Features bounty hunter gameplay clips from the first two chapters. No end-game stuff yet.

goto64
78 विचारों · 9 वर्षों पहले

A quick little introduction to the basics of base building in No Man's Sky. Base building is part of "The Foundation" update which was released today. Tip: Press Z key on the keyboard to access the building menu. This was strangely hard to find, I had to press random keys on the keyboard to discover it..

goto64
5,265 विचारों · 9 वर्षों पहले

A little guide for the game Screeps, on how to use creeps to transport energy between structures. Screeps is a real-time strategy Javascript-programming game. Note that the code I present is not in any way CPU optimized. I have tried to keep it simple. Code used in the video: -------------------- Logistic -------------------- var roleLogistic = { /** @param {Creep} creep **/ run: function(creep) { if(creep.memory.supplying && creep.carry.energy == 0) { creep.memory.supplying = false; creep.say('fetching'); } if(!creep.memory.supplying && creep.carry.energy == creep.carryCapacity) { creep.memory.supplying = true; creep.say('supplying'); } if (creep.memory.supplying) { var stores = creep.room.find(FIND_STRUCTURES, { filter: (structure) => { return (structure.structureType == STRUCTURE_STORAGE) && (structure.store[RESOURCE_ENERGY] < structure.storeCapacity); } }); if (stores && stores.length > 0) { if(creep.transfer(stores[0], RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) { creep.moveTo(stores[0]); } } } else { var containers = creep.room.find(FIND_STRUCTURES, { filter: (structure) => { return (structure.structureType == STRUCTURE_CONTAINER) && (structure.store[RESOURCE_ENERGY] > 0); } }); var source = creep.pos.findClosestByPath(containers); if (source) { if(creep.withdraw(source, RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) { creep.moveTo(source); } } } } }; module.exports = roleLogistic;

goto64
7,128 विचारों · 9 वर्षों पहले

A little guide for the game Screeps, on how to gather energy more efficiently with the use of containers. Screeps is a real-time strategy Javascript-programming game. Code used in the video: -------------------- Miner -------------------- var roleMiner = { /** @param {Creep} creep **/ run: function(creep) { var targets = creep.room.find(FIND_STRUCTURES, { filter: (structure) => { return (structure.structureType == STRUCTURE_CONTAINER) && (structure.store[RESOURCE_ENERGY] < structure.storeCapacity); } }); if(targets.length > 0) { if(creep.pos.getRangeTo(targets[0]) == 0) { var source = creep.pos.findClosestByPath(FIND_SOURCES); creep.harvest(source); } else { creep.moveTo(targets[0]); } } } }; module.exports = roleMiner; -------------------- Pickup -------------------- var containers = creep.room.find(FIND_STRUCTURES, { filter: (structure) => { return (structure.structureType == STRUCTURE_CONTAINER) && (structure.store[RESOURCE_ENERGY] > 0); } }); var source = creep.pos.findClosestByPath(containers); if(creep.withdraw(source, RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) { creep.moveTo(source); }

और दिखाओ