Jump to content

William147

Members
  • Posts

    41
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

William147's Achievements

Rat

Rat (9/54)

1

Reputation

  1. Hey, You can use "Resource Web Access" to call serversided function from your webserver. http://<your IP>:<your port>/<resource_name>/call/<exported_function_name> https://wiki.multitheftauto.com/wiki/Resource_Web_Access
  2. William147

    Crash

    Version = 1.5.6-release-15932.0.000 Time = Mon Nov 19 20:20:01 2018 Module = D:\Játékok\MTASA 1.5\MTA\libcef.dll Code = 0xE0000008 Offset = 0x01522D60 EAX=6FB3F640 EBX=84767EEC ECX=00000001 EDX=00000000 ESI=00000000 EDI=00173BC3 EBP=6FB3F69C ESP=6FB3F640 EIP=73ED1812 FLG=00000212 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B Clients from my server are always crashing. What can it cause?
  3. I would like to set same volume in browser volume which the client set in the MTA settings.
  4. Hi. Can I get the MTA settings in some way? I want to use the MTA volume which the users using.
  5. In whitch row is the error? Melyik sorban van az error?
  6. I have a same problem. Anyone can help?
  7. I writed a half script, you can see the method. function getNearestVehicle(player,distance) local tempTable = {} local lastMinDis = distance-0.0001 local nearestVeh = false local px,py,pz = getElementPosition(player) local pint = getElementInterior(player) local pdim = getElementDimension(player) for _,v in pairs(getElementsByType("vehicle")) do local vint,vdim = getElementInterior(v),getElementDimension(v) if vint == pint and vdim == pdim then local vx,vy,vz = getElementPosition(v) local dis = getDistanceBetweenPoints3D(px,py,pz,vx,vy,vz) if dis < distance then if dis < lastMinDis then lastMinDis = dis nearestVeh = v end end end end return nearestVeh end bindKey("mouse2","down",function() nVeh = getNearestVehicle(localPlayer,5) door_rf_dummyX,door_rf_dummyY,door_rf_dummyZ = getVehicleComponentPosition ( nVeh, "door_rf_dummy", "world" ) door_lf_dummyX,door_lf_dummyY,door_lf_dummyZ = getVehicleComponentPosition ( nVeh, "door_lf_dummy", "world" ) door_rb_dummyX,door_rb_dummyY,door_rb_dummyZ = getVehicleComponentPosition ( nVeh, "door_rb_dummy", "world" ) or 0,0,0 door_lb_dummyX,door_lb_dummyY,door_lb_dummyZ = getVehicleComponentPosition ( nVeh, "door_lb_dummy", "world" ) or 0,0,0 px,py,pz = getElementPosition(localPlayer) distances = { {getDistanceBetweenPoints3D(px,py,pz,door_rf_dummyX,door_rf_dummyY,door_rf_dummyZ),"door_rf_dummy"}, {getDistanceBetweenPoints3D(px,py,pz,door_lf_dummyX,door_lf_dummyY,door_lf_dummyZ),"door_lf_dummy"}, {getDistanceBetweenPoints3D(px,py,pz,door_rb_dummyX,door_rb_dummyY,door_rb_dummyZ),"door_rb_dummy"}, {getDistanceBetweenPoints3D(px,py,pz,door_lb_dummyX,door_lb_dummyY,door_lb_dummyZ),"door_lb_dummy"}, } table.sort(distances,function(a, b) return a[1] < b[1] end) outputChatBox(distances[1][2]) setVehicleComponentRotation(nVeh,distances[1][2],0,0,-45) end)
  8. Hi. Use bindKey and getVehicleComponentPosition with world argument.
  9. local veh = getPedOccupiedVehicle ( getRandomPlayer() ) local success = setVehicleHandling ( veh, "centerOfmass", {0,0,0}) if success then outputChatBox("ok") else outputChatBox("not ok") end It outputs "not ok". What is the problem? Solved, Im blind. mass not same as Mass
  10. I would like to add special characters which I can write into a box, but the problem is that if I add a special character the backspace isn't working. Who can I fix it?
  11. William147

    Bots

    Hi! Can I make or spawn elements with "player" elementtype? If yes how?
  12. William147

    BindKey

    bindKey(getRandomPlayer(),"F2","down", gui)
  13. Hello. My problem is this, that in my RolePlay server the traffic lamps are flashing. What can be problem? Miss something .so file?
  14. client local x,y = guiGetScreenSize() atad = guiCreateButton( x/2+150+150,y/2+(423/2)+57,150,43, "", false ) addEventHandler ( "onClientGUIClick", getResourceRootElement(getThisResource()), function ( ) if (source == atad) then triggerServerEvent("testevent", getLocalPlayer()) outputChatBox("asdadadadadasdasda") end end ) server function test() outputChatBox("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") end addEvent("testevent", true) addEventHandler("testevent", getRootElement(), test) if i click on gui then script write "asdadadadadasdasda" but "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" not! What is the problem?
×
×
  • Create New...