Yellow Totebot Character
Yellow Totebot Character
This mod adds Yellow 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 act same as green totebots, except thay can jump
- 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_dc02b14d-f737-4f19-aba2-bb4150485249/Character/YellowTotebot/totebot_yellow.json",
Now place a Yellow 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_dc02b14d-f737-4f19-aba2-bb4150485249/Character/YellowTotebot/totebot_yellow.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("062d6c00-3915-45f8-a9ca-ccd4f83b60fa"),sm.vec3.new(node.position.x+7,node.position.y,node.position.z+4),toYaw( node.rotation ) ) end
Done