Jump to content

Anderl

Members
  • Posts

    2,266
  • Joined

  • Last visited

Everything posted by Anderl

  1. Um jeito fácil seria: isGuestAccount( pAccount ) and getPlayerName( pPlayer ) or getAccountName( getPlayerAccount( pAccount ) ) Mas, obviamente, você tem que mudar esse código.
  2. No one called you idiot. But it's true, you're bad scripter.
  3. none-experience Did you even test? No, you didn't. How can you know we have no experience? Seems like you never worked on a hosting company / you don't know how thinks work.
  4. You can't compare a company with 4 years and us, which are starting now. And don't forget that I'll be updating prices everytime... But I can't put a low price now, I would gain nothing that way.
  5. Hi, I'm starting to sell MTASA-SAMP servers( datacenter in USA ) and as I didn't find anyone who is looking for game hosting, I thought in making a post there. We currently don't have any website, I'm starting only with machines and when I get some consumers I open the website. Prices are below: MTA:SA: €0.20 - $0.25 - R$0.50 SA:MP: €0.17 - $0.20 - R$0.40 CS: €0.35 - $0.42 - R$0.88; I had to make some changes when I converted price. Currently, you can only pay by PayPal ( I'll add OneBip later ). We can assure you 99.5% uptime and 99.9% no lag guarantee. We don't give the money back. You will get: - Support; - Game control panel; - Full FTP access; - Unlimited space; If you are interested, PM me. You can also get 1 day trial, just PM me.
  6. True, you don't even know how to script properly, X-SHADOW
  7. Eu nunca irei criar um servidor brasileiro por uma simples razão: Só vai entrar noobs brasileiros pedindo direitos de admin, como não damos, eles saiem do servidor/chingam os jogadores/donos.
  8. I know this is a bit outdated already but I just want to say something. Here: if ($info["password"] == '0') { $pw = "No"; } else { $pw = "Yes"; } You can simplify this to: echo $info['password'] == '0' ? 'No' : 'Yes'; Isn't it easier?
  9. Also don't use ports 20/21/22.
  10. He already has the tool, he just want to know how to do the loops.
  11. Cara, eu falei que não existe um sub-fórum português PARA PROPAGANDA DE HOSPEDAGENS. Eu estou tentando começar uma empresa e pensei que vocês entendessem, mas parece que vocês não entendem nada mesmo
  12. Copie meu último código e bote isso no "racevoting_server.lua": function findMap( mapName ) if( mapName and type( mapName ) == 'string' and mapName ~= '' ) then local t = exports.mapmanager:getMapsCompatibleWithGamemode( getResourceFromName( 'race' ) ); for i,v in ipairs( t ) do if( tostring( getResourceInfo( v, 'name' ) ) == tostring( mapName ) ) then return v; end end end return 'Unable to find choosed map!'; end
  13. Eu usei este sub-fórum porque eu não estou querendo publicar isso para pessoas de outros países, apenas para nossa "pequena" comunidade aqui. Os administradores não poderão reclamar, pois não existe nenhum sub-fórum português aqui. Você acha que eu iria falar português numa secção inglesa? Teria que falar inglês, e como já disse, não quero publicar isso para pessoas de outros países.
  14. Isso é relacionado com MTASA e não é ilegal lol Isso não é uma postagem sobre SAMP, apenas dizendo que estou hospedando MTASA e SAMP.
  15. Agree with Ren. It could have new things, but anyway it gave the mappers a lot of work.
  16. Eu acho que não deveria postar aqui, mas, aqui é o melhor sítio que encontrei pois na secção "Hosting Solutions" eu penso que é para empresas já com site, sistema pronto e isso aqui é só para começar... Então, eu estou começando a vender hospedagem de MTASA-SAMP ( datacenter aqui, nos Estados Unidos ) e como não estou encontrando ninguém que esteja precisando de host, resolvi vir aqui. Os preços estão em baixo: MTASA -> €0,30 - $0,40 - R$0,75; SAMP -> €0,10 - $0,12 - R$0,25; Se quiser me contactar, me adicione no MSN: [email protected] ( ou deixe seu email aqui ) ou pelo meu Skype: c-anderl. ( sem o ponto ) Não darei garantia de dinheiro de volta, pois a minha empresa não está registrada ainda, então, pelo que sei, seria ilegal. Terá 99.5% uptime GARANTIDO. 99.9% garantia de NO LAG.
  17. I don't think someone will script for moderator rights.
  18. Check if your file is in client side in meta.xml
  19. Server-side: addEvent( 'onExternalNextMapRequest', true ); addEventHandler( 'onExternalNextMapRequest', root, function( player, map ) local mapa, error = findMap( map ); if( not mapa ) then outputRace( error, player ); return; end g_ForcedNextMap = mapa; triggerClientEvent( 'setNextMap', root, getMapName( mapa ) ); triggerEvent( 'onBuyMapSetStatus', root, 'true' ); triggerEvent( 'onScriptSetNextMap', player, mapa ); end ) Client-side: function buyMap( ) if( getElementData( localPlayer, 'money' ) >= 5000 ) then -- Eu nao recomendo voce a usar element data com esse tipo de coisas triggerServerEvent( 'onExternalNextMapRequest', root, localPlayer, tostring( guiGetText( gui.mname ) or '' ) ); else outputChatBox( '[sHOP] #ffffffYou don\' have enough money to buy a map! 5000$ needed.', 255, 150, 150, true ); end end Eu não recomendo a você usar element data em jogadores pois element data é deletado quando o elemento é destruído. Bote isso no Race e tente, eu não testei...
  20. Try it and stop making double post.
  21. It can, if you want. @@Jaysds1, setElementData(attacker,"Points",getElementData(attacker,"Points")+3) First time, element data Points doesn't, so it will be false. You must check if it is set. Also variable attackerPnts is not defined and... setPlayerTeam(source,getTeamFromName(unpack(teams[math.random(#teams)]))) unpack function is not needed here.
  22. 1. He didn't end the map. 2. Agree.
  23. He mean set the size of the gridlist automatically the same as the rows.
  24. Off-topic: Gostei pks desse logo da +NeW
  25. Can't you edit a post instead of making TRIPLE post?
×
×
  • Create New...