- 18
- 5
Написал простой скрипт для выведения хп игрока через команду /hp, но почему то не работает. Помогите.
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('hp', func)
while true do
wait(0)
end
end
function func()
result, playerid = sampGetPlayerIdByCharHandle(PLAYER_PED)
health = sampGetPlayerHealth(playerid)
sampAddChatMessage(health, {0xFFFFFF})
end
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('hp', func)
while true do
wait(0)
end
end
function func()
result, playerid = sampGetPlayerIdByCharHandle(PLAYER_PED)
health = sampGetPlayerHealth(playerid)
sampAddChatMessage(health, {0xFFFFFF})
end