LuaLoader
-
Password for the archive: libertycity
-
github.comDownloadPassword for the archive: libertycity
LuaLoader is an analogue of Moonloader, only for GTA VC, based on Plugin SDK from DK22Pac.
Who cares, the entire source code is here
And on Github
You need to place all files with the .lua extension in the lualoader folder, which you need to create in the root folder of the game. The plugin.VC.asi file must be placed in the root of the game.
If something does not work, then the error will be written to the log file located in the lualoader folder.
The plugin only works with version 1.0 of the game.
Let's see how a couple of functions work.
require("lualoader/mod")
function main()
while true do wait() -- delay
player = findplayer() -- get player
if Keypress("VK_H") -- if the H key is pressed
then x,y,z = getcoordinates_on_y(player, 5) -- get player's current coordinates
car = Createcar("MODEL_PCJ600", x, y, z) -- create a motorcycle
Giveweaponped(player, 600, "uzi") -- and give the ped a weapon.
wait(300)
end
end
end
When you press the "H" key, a motorcycle is created, and the player is given a weapon - "Uzi".
More than 230 functions in total. You can even write entire missions.
The VK group has detailed information about scripts and functions.
LuaLoader — это аналог Moonloader, только для GTA VC, на основе Plugin SDK от DK22Pac.
Кому интересно, весь исходный код находится здесь
И на Github
Нужно поместить все файлы с расширением .lua в папку lualoader, которую нужно создать в корневой папке игры. Файл plugin.VC.asi нужно поместить в корень игры.
Если что-то не работает, то ошибка запишется в лог-файл, находящийся в папке lualoader.
Плагин работает только с версией игры 1.0.
Рассмотрим как работает пара функций.
require("lualoader/mod")
function main()
while true do wait() -- задержка
player = findplayer() -- получаем игрока
if Keypress("VK_H") -- если нажата клавиша H
then x,y,z = getcoordinates_on_y(player, 5) -- получаем текущие координаты игрока
car = Createcar("MODEL_PCJ600", x, y, z) -- создаём мотоцикл
Giveweaponped(player, 600, "uzi") -- и даём педу оружие.
wait(300)
end
end
end
При нажатии клавиши “H” создается мотоцикл, а игроку даётся оружие — “Узи”.
Всего более 230 функций. Можно писать даже целые миссии.
В группе ВК есть подробная информация о скриптах и функциях.
Recommended files

"AK-103 from WARFACE, for GTA-VC"

Russian Rock FM

GTA Artamyanburg 0.3

107.77 The Mix FM Saints Row The Third

2012 Nissan Juke

[Lua] Mission "Kill Cortez"

[Lua] Mission “Case Delivery”

Script "Drive and shoot"

Mission “Mission collection car”

Mission “Guardianship”

Party

Mission “Races”

Mission [lua] “Races 2”

Lua script "Array"
