Red Totebot Character
Red Totebot Character
This mod adds Red Totebot character to the game, they spawn near Green Totebots or in creative with capsules
FEATURES:
- Can be placed as capsule in creative mode
- They spawn around Green Totebots in Survival mode
- They have 3 Propane tanks on their heads, they throw them when they are alerted or attacked.
- After they drop all 3 propane tanks , they start to flee
- They do not take a part in raids
How to use it:
FOR CREATIVE:
1. Open: SM game/Data/Character/charactersets.json under "characterSetList": line add:
"$CONTENT_ae49c862-51dd-4ae7-bf74-3362f2ce7964/Character/RedTotebot/totebot_red.json",
Now place a Red Totebot capsule from Mods tab and hit it with a sledgehammer
Done
FOR SURVIVAL:
1. Open: SM game/Survival/Character/charactersets.json under "characterSetList": line add:
"$CONTENT_ae49c862-51dd-4ae7-bf74-3362f2ce7964/Character/RedTotebot/totebot_red.json",
2. Open SM game/Survival/Scripts/game/survival_spawns.lua and search for:
elseif tag == "TOTEBOT_GREEN" then
3. Under it, add this line:
if math.random(1,2) == 1 then sm.unit.createUnit(sm.uuid.new("410a6252-8f47-4cda-b699-45fb84c36eec"),sm.vec3.new(node.position.x+7,node.position.y,node.position.z+4),toYaw( node.rotation ) ) end
Done