- 411
- 64
Lua:
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(string.format('[%s] {FFFFFF}Loaded.', thisScript().name), 0xFFCD5C5C)
sampRegisterChatCommand("ll", cmd_gg)
end
function cmd_gg()
sampAddChatMessage("gg", 0xFFCD5C5C)
end