Jump to content

Search the Community

Showing results for tags 'porte'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 2 results

  1. Eu estava desenvolvendo um script de porte de arma mas quando eu adiciono o script no jogo ele acaba não aparecendo o marker. vejam como está o processo local mPorte = createMarker(297.91531, -80.30178, 1000.51563, "cylinder", 2,50,50,255,255) setElementInterior(mPorte, 4) setElementDimension(mPorte, 201) function porteMSG(source) outputChatBox("#00FA9A【#00FA9ATrap City Roleplay#00FA9A】", source) outputChatBox("#00FA9A● Porte de Armas!", source) outputChatBox("#00FA9A● Custo do Porte é de #00FF00R$150,000!", source) outputChatBox("#00FA9A● Digite /comprar para Adquirir o Porte !", source) end addEventHandler("onMarkerHit", mPorte) function pegarP(source) if isElementWithinMarker(source, mPorte) then if getElementData(source,"Porte") == false then setElementData(source,"Porte", true) getPlayerMoney(source) >= 150000 takePlayerMoney(source, 150000) outputChatBox("#00FA9A【#00FA9ATrap City Roleplay#00FA9A】", source) outputChatBox("#00FA9A● Você Adquiriu seu Porte de Armas com Sucesso!", source) else outputChatBox("#00FA9A● Você não tem dinheiro suficiente para comprar o Porte !", source) end end addCommandHandler("comprar", pegarP) Obs: Podem me ajudar por favor? Não sei o que está errado
  2. Preciso De Ajuda Com Meu Script De PORTE DE ARMAS ... eu adicionei ele pra digitar o comando no marker, mas quem não tem dinheiro também é adicionado a ACL "PorteDeArmas", preciso de ajuda pra deixar em somente quem possui o dinheiro! Script: porte = createMarker (1491.136, -1768.475, 17.796, "cylinder", 2, 255, 0, 0, 50) function infoporte(source) outputChatBox ("#000000[INFO] #bababaPorte De Arma Custa R$300.000, Deseja Comprar? #FF0000[/comprarporte]", source, 255, 255, 255,true) end addEventHandler ("onMarkerHit", porte, infoporte) function comprarporte(player) if isElementWithinMarker(player, porte) then if getPlayerMoney(player) >= 300000 then takePlayerMoney(player, 300000) outputChatBox("#000000[INFO] #FF0000Você Comprou o Porte De Armas!", player, 255, 255, 0, true) else outputChatBox("#000000[INFO] #FF0000Você Não Possui Dinheiro, Vá Trabalhar!", player, 255, 255, 0, true) end end end addCommandHandler ("comprarporte", comprarporte) function trport ( source ) if isElementWithinMarker (source, porte ) then aclGroupAddObject (aclGetGroup("PorteDeArmas"), "user."..getAccountName(getPlayerAccount(source))) ---- Acl outputChatBox ("#000000[ #ff0000Sistema #000000] #ffffff Agora Você #00ff00Possui #ffffffo #ffff00"..NomeTag,source,255,255,255,true) else outputChatBox ('#000000[ #ff0000Sistema #000000] #ffffff Voce Tem Que Estar na #ff0000Prefeitura Para Pegar o Porte',source,255,255,255,true) end end addCommandHandler ( "comprarporte", trport )
×
×
  • Create New...