Jump to content

Vision

Members
  • Posts

    405
  • Joined

  • Last visited

Everything posted by Vision

  1. Vision

    Binds

    Go to Settings - Binds - Load Defaults - Ok
  2. Nice, I liked it.
  3. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6474 DONE
  4. You forgot to set the Bone ID.
  5. getElementPosition
  6. https://community.multitheftauto.com/index.php?p= ... ils&id=664
  7. Happy Birthday.
  8. isElementInWater
  9. You're welcome.
  10. triggerServerEvent ( "rog:modshop:color:setColor", localPlayer, localPlayer, r, g, b ) Should be triggerServerEvent ( "rog:modshop:color:setColor", localPlayer, r, g, b )
  11. Stolen https://community.multitheftauto.com/index.php?p= ... ls&id=6447 Original https://community.multitheftauto.com/ind ... ls&id=3674 DONE
  12. Skin mod again https://community.multitheftauto.com/index.php?p= ... ls&id=6446 DONE
  13. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6443 DONE
  14. setElementDimension getElementDimension
  15. I think that "DOZER_getout_RHS" doesn't exists in "DRIVEBYS" anim group.
  16. triggerServerEvent ( "onGreeting", getLocalPlayer(), localP ) Should be triggerServerEvent ( "giveMoney", getLocalPlayer(), localP )
  17. Modification https://community.multitheftauto.com/ind ... ls&id=6432 DONE
  18. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6414 DONE
  19. http://code.google.com/p/mtasa-resources/downloads/list
  20. guiSetInputEnabled
  21. You're welcome .
  22. teamCommunity = createTeam ("Community", 255, 255, 0) addEvent("rog:teams:setteam:community",true) addEventHandler("rog:teams:setteam:community", root, function ( ) setPlayerTeam(source,teamCommunity) end )
  23. exports.scoreboard:scoreboardAddColumn( "score" ) function xcore () zcore = getElementData ( source, "score" ) or 0 setElementData ( source, "score", zcore + 5 ) end addEvent("onPlayerWasted",true) addEventHandler("onPlayerWasted",getRootElement(),xcore) addEventHandler ( 'onPlayerQuit', root, function ( ) local account = getPlayerAccount ( source ) local getScore = getElementData ( source, 'score' ) or 0 if ( account ) and not ( isGuestAccount ( account ) ) then setAccountData ( account, 'scoreSave', getScore ) end end ) addEventHandler ( 'onPlayerLogin', root, function ( _, account ) if ( account ) then local scoreLoad = getAccountData ( account, 'scoreSave' ) if ( scoreLoad ) then setElementData ( source, 'score', scoreLoad ) end end end )
  24. Here worked fine
  25. Copy my code again
×
×
  • Create New...