Help! how to detect players from "this"?

butcherhook

Platinian
hi everyone, how do i detect players when using "find objects" in libtool and later in mod menu? and also how to do "find objects" from mod menu? will it return an array or something?

1000021361.jpg
 
Make a list. Make a Player List. Define the list, call it in Update. Add a cleanup, aka destroy it and clean it up instead of leaving it behind otherwise will lag and crash or cause performance issues.

Start off with
C++:
std::vector<void*> playerList;
void* myPlayer = nullptr;
 
Back
Top Bottom