How would you use that to get a market?
Posts made by Boltz
-
RE: An intersting gamemode idea...
-
RE: An intersting gamemode idea...
How would you do that in your browser? (no downloads, on a chromebook)
-
An intersting gamemode idea...
I'm not a paid player. I can't get multiple rooms and power creeps, which are major parts of gameplay. So I have a new request: Survival single player. What is this? Its the same as the persistent world, but your by yourself, except for invader npcs and bots (or examples of players codes) you want. It should be free due to the server runs on your computer, but you can trade for your world (with other players), and there should be a Global power level and ect. (Note, the powercreeps are the same but only for your world.) How does this sound? I hope this get considered soon.
-
RE: Healer not finding creeps?
All creeps that are the healer class have Heal part, when I check console, the even though there are damaged creeps, the console says that there are none. I don't know how to find the health of that single creep though the log. The bug is probably a mistake in finding the creeps that are damaged. Also, the creep IS moving to spawn, (I tested this by creating a creep far away from spawn in training mode), so I think the problem is finding creeps that need healing.
-
Healer not finding creeps?
I just made my healer role, but its not healing anything or moving. Here is my code:
if(creep.memory.role == "medic") { var damagedCreeps = creep.room.find( Game.MY_CREEPS, { filter: function(creep) { return ( creep.hits < creep.hitsMax ); } } ); if (damagedCreeps.length > 0){ creep.heal(damagedCreeps[0]); } else { creep.moveTo(Game.spawns.Spawn1); } }
Any tips?