- Версия SA-MP
-
- 0.3.7 (R1)
- 0.3.7-R2
- 0.3.7-R3
- 0.3.7-R4
Сокращённые комманды для сервера Monser Gang War в .lua скрипте.
Стиллеров - нет!
Код скрипта:
Стиллеров - нет!
Код скрипта:
Lua:
function main()
while not isSampAvailable() do wait(0) end
encoding = require "encoding"
encoding.default = "UTF-8"
u8 = encoding.CP1251
sampRegisterChatCommand("fs", fast)
sampRegisterChatCommand("atc", antic)
sampRegisterChatCommand("gn", guns)
sampRegisterChatCommand("sk", skin)
sampRegisterChatCommand("tm", time)
sampRegisterChatCommand("hm", healme)
sampRegisterChatCommand("ms", mask)
sampRegisterChatCommand("shelp", shelp)
sampAddChatMessage(u8("{00FF00}[Short cmds] {FFFF00}Use /shelp to open list of commands."), 0xFFFFFFFF)
wait(-1)
end
function fast(loka)
local loka = tonumber(loka)
sampSendChat("/fast " .. loka)
end
function antic(loka)
local loka = tonumber(loka)
sampSendChat("/antic " .. loka)
end
function guns()
sampSendChat("/guns")
end
function skin(id)
local id = tonumber(id)
sampSendChat("/skin " .. id)
end
function healme()
sampSendChat("/healme")
end
function mask()
sampSendChat("/mask")
end
function time()
sampSendChat("/time")
end
function shelp()
sampShowDialog(10, "{00FF00}Short commands", "{FFFF00}/fs [id] - /fast [id]\n{FFFF00}/atc [id] - /antic [id]\n{FFFF00}/sk [id] - /skin [id]\n{FFFF00}/gn - /guns\n{FFFF00}/ms - /mask\n{FFFF00}/hm - /healme\n{FFFF00}/tm - /time\n{FFFF00}/shelp - this window", u8("{00FF00}Закрыть"), u8(""), 0)
end
Вложения
Последнее редактирование модератором: