Jump to content

Chronos

Members
  • Posts

    71
  • Joined

  • Last visited

Details

  • Gang
    N/A
  • Location
    MA

Recent Profile Visitors

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

Chronos's Achievements

Transformer

Transformer (11/54)

2

Reputation

  1. Fixed the issue by adding dinput8.dll Thanks for your time.
  2. Hi there, Well, The problem is I can't aim .. and I've got this issue once I updated my MTA to 1.5.1 Here's my MTADiag log https://pastebin.mtasa.com/562722359
  3. Well ,I recommend you to use GTW open source turf system Here's a link for the resource https://community.multitheftauto.com/in ... ls&id=9056
  4. Great resource , keep it up MrBrutus @Wisam In case you wanna add a vehicle limits just add a check Here's an example function playerVehicles() return dbQuery("SELECT * FROM vehicles WHERE owner=? AND ID=?", getAccountName(getPlayerAccount( client )) end Then add a check to the vehicleBuyRequest function function vehicleBuyRequest( model ) -- some functions if playerVehicles(client) >= 10 then outputChatBox(client,"You can't buy more than 10 vehicles.",255,0,0) return end -- functions end
  5. You can use this script https://community.multitheftauto.com/index.php?p=resources&s=details&id=8338 read the description to understand how stuffs work.
  6. local elementBackpack = {} function backPackBack (dataName,oldValue) if getElementType(source) == "player" and dataName =="rucksak" then local newValue = getElementData(source,dataName) if not #newValue or #newValue <= 0 then setElementData ( source, "rucksak", { 0 } ) return true end if not oldValue or not #oldValue then oldValue = { 0 } end if newValue[1] == 0 then if elementBackpack[source] then detachElementFromBone(elementBackpack[source]) destroyElement(elementBackpack[source]) elementBackpack[source] = false end elseif newValue[1] ~= oldValue[1] then if elementBackpack[source] then detachElementFromBone(elementBackpack[source]) destroyElement(elementBackpack[source]) elementBackpack[source] = false end local x,y,z = getElementPosition(source) local rx,ry,rz = getElementRotation(source) local model = newValue[1] if model == 1 then elementBackpack[source] = createObject(3026,x,y,z) elseif model == 2 then elementBackpack[source] = createObject(1248,x,y,z) elseif model == 3 then elementBackpack[source] = createObject(1575,x,y,z) elseif model == 4 then elementBackpack[source] = createObject(1252,x,y,z) elseif model == 5 then elementBackpack[source] = createObject(2405,x,y,z) else return false end if model == 3 then attachElementToBone(elementBackpack[source],source,3,0,-0.16,0.05,270,0,180) else attachElementToBone(elementBackpack[source],source,3,0,-0.225,0.05,90,0,0) end end end if getElementType(source) == "player" and dataName == "helmetOn" then if getElementData ( source, dataName ) then local x, y, z = getElementPosition(source) local helmet = createObject(2052, x, y, z) setElementData ( source, "helmetObject", helmet ) local skin = getElementModel ( source ) if skin == 73 then attachElementToBone(helmet, source, 1, 0, 0.02, -0.53, 0, 0, 90) elseif skin == 287 then attachElementToBone(helmet, source, 1, 0, 0.01, -0.56, 0, 0, 90) elseif skin == 18 then attachElementToBone(helmet, source, 1, 0.015, 0.025, -0.54, 0, 0, 90) elseif skin == 23 then attachElementToBone(helmet, source, 1, 0, 0.015, -0.574, 0, 0, 90) elseif skin == 24 then attachElementToBone(helmet, source, 1, 0, 0.015, -0.575, 0, 0, 90) elseif skin == 1 then attachElementToBone(helmet, source, 1, 0, 0.015, -0.545, 0, 0, 90) elseif skin == 2 then attachElementToBone(helmet, source, 1, 0.015, 0.025, -0.59, 0, 0, 90) else attachElementToBone(helmet, source, 1, 0, 0.015, -115, 0, 0, 90) end else if isElement ( getElementData ( source, "helmetObject" ) ) then detachElementFromBone( getElementData ( source, "helmetObject" ) ) destroyElement ( getElementData ( source, "helmetObject" ) ) setElementData ( source, "helmetObject", false ) end end end end addEventHandler ( "onElementDataChange", getRootElement(), backPackBack )
  7. Chronos

    Topic Moved

    Cool ! keep it up
  8. Wow, cool to see such thing ^^
  9. Try this setElementDimension ( source, 1 )
  10. Check this https://forum.multitheftauto.com/viewtopic.php?f=148&t=40809
  11. This board for scripting helps not for requests,To script such thing use createTeam setPlayerTeam setPlayerNametagColor
×
×
  • Create New...