Is there any way to make that player X can go through all other players and all other players can go through player X ONLY but not through each other?
Basicly, I need what this plugin is doing but only with different method.
https://forums.alliedmods.net/showthread.php?p=562944
I don't want to use server_frame, Touch, or any other forwards.
I tried something like this:
PHP Code:
set_pev(id, pev_movetype, MOVETYPE_NOCLIP)
set_pev(id, pev_solid, SOLID_BSP)
But I want that player can walk/run/jump around the map and be able to go through other players, and not "fly" with noclip.