Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/06/20 in all areas

  1. NEW/CUSTOM WEAPONS This resource allow you to add weapons, you can add new type of weapons, for while its just for rifles that replace M4 V1.0 8 Weapons ( Rifle ) Different sounds. HOW TO USE F2 open panel, you just need to select the weapon. How to add weapons. Open both scripts client and server Add the name of weapon that you want in table {"AUG",4394} > Name, and Object ID that you will replace it Take the skin of weapon put in models folder and in meta.xml The name of dff and txd must be the same of weapon in table ( without space ) in table you can put space. Make the same with the .wav sound. FUNCTION TO EXPORT giveNewWeapon(player,WEAPONAME) --Example. function givewep(player) giveNewWeapon(player,"M4A1") end DOWNLOAD: https://community.multitheftauto.com/index.php?p=resources&s=details&id=18149
    1 point
  2. 1 point
  3. Thanks for the suggestion. I think this could be implemented using PayPal's Authorization & Capture API (there's also a guide here), that way we don't actually take money out of people's accounts long before providing them a service. But I'm not responsible for anything money related including the toplist system, so this is something that @ccw would have to look into and implement.
    1 point
  4. You can't use aclGetGroup on client-side, it's a server-sided function.
    1 point
  5. Eu ensino isto de graça mais ninguém nunca tem realmente vontade de aprender, eu desisto se quiser aprenda pro conta própria meu tempo não é como lixo. e eu acho que será difícil de você achar alguém aqui pois a maioria dos desenvolvedores de conteúdo brasileiro ativos tem seus próprios projetos e estão ocupado com eles ao menos que o dinheiro fale mais alto para ele é claro.
    1 point
  6. $n = 0; function calc(int $x ,$o, int $y){ switch ($o) { case "+": $n = $x + $y ; break; case "-": $n = $x - $y ; break; case "*": $n = $x * $y ; break; case "/": $n = $x / $y ; break; default: $n = "SENTEX ERROR!" ; } return $n ; } echo " = ". calc(1,"+",3) ; SIMPLE CALC FUNCTION
    0 points
×
×
  • Create New...