You are not logged in.
Pages: 1
void addClientCommand(char *szCmd, CMDPROC pFunc) { if (g_Input == nullptr) return; void(__thiscall *AddClientCommand) (const void *_this, char *szCommand, CMDPROC pFunc) = (void(__thiscall *) (const void *, char *, CMDPROC)) (dwSAMPAddr + SAMP_FUNC_ADDCLIENTCMD); if (szCmd == NULL) return; return AddClientCommand(g_Input, szCmd, pFunc); }
Pages: 1