NeXuS™ presents dxLib
Introduction
You want to work with dx functions, but you don't understand them? This is a script for you.
You can create panels created by dx functions just like with GUI functions.
Status
IN DEVELOPMENT
Sorry guys, its not finished yet, so I'm not publishing it.
This is just a show off, that you'll get this in weeks.
Whats done already
Screenshots
Syntax
Hey,
is it possible that there was some recent change which causes problems with mods, e.g. vehicles?
Some players on my server saying their mods dont work anymore from one day to another, even though nothing on the server was changed.
We checked the versions of some players and it seems only players with a higher version are affected.
Thanks.
Replace
return items[foundItem][1]
with
triggerClientEvent(source, "setJunkItem", getRootElement(), items[foundItem][1])
And then client side:
addEvent("setJunkItem", true)
addEventHandler("setJunkItem", getRootElement(), function(itemID)
foundItemImage = itemID
end)
I think this one should work.
Can you write down your name copied from the settings and your serial? (F8 -> serial)
serialList =
{
["#NeXuS"] = "73B520027203B67334A182ED91E6CD54"
}
addEventHandler("onPlayerJoin", getRootElement(), function()
local selectedSerial = serialList[getPlayerName(source)]
if (selectedSerial) then
if selectedSerial ~= getPlayerSerial(source) then
banPlayer ( source, false, false, true, getRootElement ( ), 'Wypierdalaj kurwo !' )
end
end
end)
This one works totally fine for me.
<meta>
<info author="Lorder" type="script" name="AutoBan" version="1.0.0" />
<script src="server.lua" type="server" />
</meta>
And replace your function.
addEventHandler ( 'onPlayerJoin', getRootElement ( ),
function ()
local Serial = seriale[getPlayerName(source)]
if ( Serial ) then
if Serial ~= getPlayerSerial ( source ) then
banPlayer ( source, false, false, true, getRootElement ( ), 'Wypierdalaj kurwo !' )
end
end
end
)
This is OwlGaming's script. If you want to create a token based system, use your own script and not a leaked one. It'll be easier to manage in the long run.
Job to help him, not to copy paste and write everything for him.
The way you have to do this by making a colshape and using getElementsWithinColShape "vehicle" and then it s hould be done
it is our duty to help him as long as he learns not blindly give codes all time
Клиент продолжает работать после потери соединения. Например при нажатии на клавишу с клиента на сервер отправляется триггер. Игрок отключает интернет, жмет клавишу, подключает интернет и триггер в этот момент отправляется на сервер.