LUA:
local walkingStyles = {
{0, \"Normál\"},
{55, \"Kigyúrt\"},
{56, \"Feszes\"},
{69, \"Halk\"},
{119, \"Öreg\"},
{120, \"Öreg 2\"},
{123, \"Öreg 3\"},
{121, \"Bandás 1\"},
{122, \"Bandás 2\"},
{124, \"Kövér\"},
{125, \"Kocogó\"},
{126, \"Részeg\"},
{129, \"Női 1\"},
{131, \"Női 2\"},
{132, \"Női 3\"},
{133, \"Női 4\"},
}
addCommandHandler(\"seta\", function(player,cmd,id)
if id then
local id = tonumber(id) or 0
local found = walkingStyles[id]
if found then
outputChatBox(\"Séta stílusod átállítva: \"..found[2], player, 0, 255, 0)
setPedWalkingStyle(player, found[1])
else
outputChatBox(\"Hibás séta stílus!\", player, 255, 0, 0)
end
end
end)
meta.xml:
<meta>
<script src=\"luafile.lua\"/>
</meta>