-
Content Count
47 -
Joined
-
Last visited
-
Zcraks started following Character Customization, Event for camera, spraycan, fire extinguisher, Dont working marker and 7 others
-
Who knows event for camera, spraycan, fire extinguisher ? "onPlayerWeaponFire" dont working.
-
marker = createMarker ( 2371.64, -1126.66, 1050.88 - 1, "cylinder", 0.7) marker:setInterior(8) marker:setDimension(1) addEventHandler("onMarkerHit", marker, function( player ) if player:getType() == "player" and dim == 1 then outputDebugString("TEST") end end) Server side
-
addEventHandler ("onPlayerVehicleEnter", getRootElement(), function (theVehicle, seat, jacked) if theVehicle and seat == 0 then theVehicle:setData("lastPos", theVehicle:getPosition()) end end) setTimer(function() for k, veh in ipairs(getElementsByType("vehicle")) do if veh then local pos = veh:getPosition() local vec = veh:getData("lastPos") if pos and vec and distance then --[[ Error => ]] local value = getDistanceBetweenPoints3D(vec:getX(), vec:getY(), vec:getZ(), pos:getX(), pos:getY(), pos:getZ()) if value then -------------
-
Error stack overflow addEventHandler("onPlayerSpawn", getRootElement(), function() setTimer(function() end, 10000, 0) end)
-
who knows how to fix the problem ? https://ibb.co/LJKBPxv
-
Hi, is it possible to start voice chat through export?
-
local function backspacePress ( button, press ) if button == 'backspace' and press then if value ~= 'none' then editBox[value] = utf8.sub(editBox[value], 1,utf8.len(editBox[value])-1) end end end addEventHandler("onClientKey", root, backspacePress ) How do I create a condition where if a player presses the "backspace" button, the characters are deleted until the player releases the button ?
-
I dont use the GUI. What to do then?
-
When starting the login panel, I can use different binds. How can they be turned off for a while?
-
Dont working dxCreateFont quality. local font = dxCreateFontClient("font.otf", 100, false, "cleartype_natural" )
-
Hi, who knows to how a create custom circle radar ?
-
Hi, who knows how to create a character clothes system ? Don't CJ system.
-
x1, y1 = getScreenFromWorldPosition(v[1]+0.5, v[2], v[3]+1) x2, y2 = getScreenFromWorldPosition(v[1]+0.5, v[2], v[3]) ... getDistanceBetweenPointAndSegment2D(clickedX, clickedY, x1, y1, x2, y2) attempt to call global "getDistanceBetweenPointAndSegment2D" (a nil value)
-
Hi, how create a click for dxDrawMaterialLine3D ?