Is the AI is on the server or is a client?

Is the AI is on the server or is a client? I mean, can the AI access and modify a TMap that is in the GameMode?

Hey @AMAND4.x,
I believe the AI can access and modify all game components that you code it to do so; I think as long as you can get a reference to the object you should be able to write code to modify it!
I hope this can help,
-Zen

AI is owned by the server. On clients they are simulated proxies, just as our player is on all other clients. NPC Logic runs on the server, so whatever you code it to do is executed by the server itself.

1 Like