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. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6474 DONE
  3. You forgot to set the Bone ID.
  4. https://community.multitheftauto.com/index.php?p= ... ils&id=664
  5. triggerServerEvent ( "rog:modshop:color:setColor", localPlayer, localPlayer, r, g, b ) Should be triggerServerEvent ( "rog:modshop:color:setColor", localPlayer, r, g, b )
  6. Stolen https://community.multitheftauto.com/index.php?p= ... ls&id=6447 Original https://community.multitheftauto.com/ind ... ls&id=3674 DONE
  7. Skin mod again https://community.multitheftauto.com/index.php?p= ... ls&id=6446 DONE
  8. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6443 DONE
  9. setElementDimension getElementDimension
  10. I think that "DOZER_getout_RHS" doesn't exists in "DRIVEBYS" anim group.
  11. triggerServerEvent ( "onGreeting", getLocalPlayer(), localP ) Should be triggerServerEvent ( "giveMoney", getLocalPlayer(), localP )
  12. Modification https://community.multitheftauto.com/ind ... ls&id=6432 DONE
  13. Modification https://community.multitheftauto.com/index.php?p= ... ls&id=6414 DONE
  14. http://code.google.com/p/mtasa-resources/downloads/list
  15. teamCommunity = createTeam ("Community", 255, 255, 0) addEvent("rog:teams:setteam:community",true) addEventHandler("rog:teams:setteam:community", root, function ( ) setPlayerTeam(source,teamCommunity) end )
  16. 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 )
×
×
  • Create New...