#Grabby make me code for a simple follower

34 messages · Page 1 of 1 (latest)

thick marsh
#

canmod make me code for a simple follower

marsh vesselBOT
random ingot
#

canmod make a 3d printer code for a triangle and square

marsh vesselBOT
fluid laurel
#

Canmod make code for an arm that acts like an ik rig or smth

marsh vesselBOT
fluid laurel
#

Ok

pure sinew
#

Canmod

marsh vesselBOT
#

Grabby cannot help with that.

pure sinew
#

ok

lunar cloak
#

Canmod make me code for a gun

marsh vesselBOT
lunar cloak
undone sun
#

Canmod make me code for a car

marsh vesselBOT
atomic field
#

Canmod make code for all direction looking face

marsh vesselBOT
atomic field
#

Canmod make code for a cube that faces the player in all directions

marsh vesselBOT
gloomy nest
#

canmod make a pathfinding ai with range and rome

marsh vesselBOT
gloomy nest
#

canmod pls make code for something to look at players

marsh vesselBOT
# gloomy nest canmod pls make code for something to look at players

Code below makes Cam face Player each frame.

LABEL AimPlayer
SUB R1 Player.Pos.x Cam.Pos.x
SUB R2 Player.Pos.y Cam.Pos.y
SUB R3 Player.Pos.z Cam.Pos.z
MUL R4 R1 R1
MUL R5 R3 R3
ADD R6 R4 R5
SQRT R6 R6
ATAN2 R7 R3 R1
ATAN2 R8 R2 R6
SET Cam.Rot.y R7
SET Cam.Rot.x R8
SLEEP 0
GOTO AimPlayer
END
gloomy nest
#

canmod pls make me chasing ai with wall detection

marsh vesselBOT
# gloomy nest canmod pls make me chasing ai with wall detection

Chasing AI with wall detection ready.
Use patrol logic, ray cast for walls.
Simple code:

LABEL start
SET R0 0
RAND R0 100
ADD enm.Pos.x enm.Pos.x R0
LABEL loop
SUB R1 player.Pos.x enm.Pos.x
SUB R2 player.Pos.y enm.Pos.y
ADD R3 R1 R2
LESS R4 R3 0
IF R4 avoid
SET enm.Speed 5
GOTO move
LABEL avoid
SET enm.Speed 2
ADD enm.Pos.x enm.Pos.x -1
LABEL move
ADD enm.Pos.x enm.Pos.x enm.Speed
GOTO loop

Sensors trigger wall response.

gloomy nest
#

canmod pls make pathfinding ai that has range and roam

marsh vesselBOT
gloomy nest
#

canmod make pathfinding ai with range and roam

marsh vesselBOT
gloomy nest
#

canmod make random room generation

marsh vesselBOT
scenic ravine