mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
[server] Implement and match n_ShowNameTags(...)
This commit is contained in:
parent
7e810757fa
commit
658432bae0
@ -331,10 +331,14 @@ static cell AMX_NATIVE_CALL n_SetPlayerWorldBounds(AMX *amx, cell *params)
|
||||
return 0;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------
|
||||
|
||||
// native ShowNameTags(show)
|
||||
static cell AMX_NATIVE_CALL n_ShowNameTags(AMX *amx, cell *params)
|
||||
{
|
||||
// TODO: ShowNameTags
|
||||
return 0;
|
||||
CHECK_PARAMS(1);
|
||||
pNetGame->m_bShowNameTags = (bool)params[1];
|
||||
return 1;
|
||||
}
|
||||
|
||||
static cell AMX_NATIVE_CALL n_ShowPlayerMarkers(AMX *amx, cell *params)
|
||||
|
Loading…
Reference in New Issue
Block a user