луа скрипты для гаррис мод дарк рп

Garry’s Mod: Чит-Мод/Cheat-Mode (Пак lua скриптов)

Всем привет. Я немножко покопался в интернете и нашел в открытом доступе пак луа читов для гарис мода.:D
Пак содержит 35 lua читов. И да я проверял не все. (Есть даже те которые могут выдать вам супер админку на серверах и просто разорвать их в клочья, а могут и заставить вас вести себя как придурка (Когда нажмешь на кнопку НЕ НАЖИМАТЬ в Defqonsploit).

По поводу установки
1) Скачиваем файл
2) Все lua файлы закидываем в папку (вот ее адрес) SteamLibrary\steamapps\common\GarrysMod\garrysmod\lua
3) Вуаля, все ваши скачанные файлы готовы к использованию
По поводу активации (лично я так делаю)
1) Открываем garrys mod
2) Заходим в одиночный режим и открываем консоль
3) В консоли пишем: sv_allowcslua 1337229 и так же sv_cheats 1337229 (тут может быть другое любое число, но важно чтобы оно было большое. Большое потому, что его будет легче найти прогой Cheat Engine)
4) Запускаем Cheat Engine и ищем там наши заветные циферки : 1337229
5) Находим результаты (Их должно быть 2) и добавляем в таблицу.
6) Сохраняем и заходим на абсолютно любой сервер в гмод
7) Открываем Cheat Engine с нашими результатами в таблице (видим что значения стали 0)
8) Меняем Значения с 0 на 1 в обоих строках.
9) Прописываем в консоль команду lua_openscript_cl (Название вашего скрипта) Например я предпочитаю Defqonsploit.lua
10) Чтобы открыть меню чита defqonsploita например, нужно просто ввестив консоли Defqon

P.S. Есть даже такие lua скрипты которые могут ддосить сервер или даже положить его на некоторое время. Есть такие которые не работают без лицензии. А есть такие которые могут вам выдать суперадминку и другие приколы. Например Deathnote.
Большинство этих читов не палит скринграб, я проверял некоторые.

И если вам понравилось, то поддержите лайком пожалуйста. :З

Скачать Cheat Engine с нашего сервера Вы сможете здесь.

Источник

Луа скрипты для гаррис мод дарк рп

What can Lua do on Gmod? Lua can help you create add-ons like the ones in the workshop. You can use it to control objects in-game, create an admin system, or anything you want, as long as you know how to do it.

If you would like some help with Lua, or any other programming language, come join my server on Guilded, a fellow programmer, or I will help you as much as possible. Do not private message me on Guilded, ask your questions on the programming group, if you do I will ignore it.

Or if your running a server, you can put it in there.

Now you need to enable the console on Garry’s Mod if you already haven’t.

1.) Start Garry’s Mod.
2.) Go to Options.
3.) Go to the Keyboard Tab.
4.) Click the Advanced button.
5.) Check Enabled developer console, then click Okay.
6.) Click Okay again. Now your console will open when you press «

Now, start a game, after that open the console, and you can put lua_openscript fileName.lua to start it server side, to start it client side put lua_openscript_cl fileName.lua in the console. It should run unless you have errors, the errors will appear if that file does not exist, or theres a problem in your lua file.

These will not work if your on someon else’s server, it can be only on your own, unless you have some kind of special access to their server.

What printing does is that it prints to a developer console to post a message, this is basically used to print out errors in the console so developers can fix the issues. But it can also be used for anything. The cool thing is that print(); can take in any variable, bellow i will show you examples.

Printing normal text

Adding variables along with text

Today we will be learning about Variables, now the first thing I need to show you is different Variable Types. Below is an example of all them.

Firstly to make a Variable itself just make a name without spaces, or any special characters, but to replace spaces, use «_» ( Underscore ). Then make an equals sign after that, and make it equal anything that is specified up-top in the Variable Types.

String Variable Rules

In string variables, when you make it equal text, make sure you put quotations around the text, otherwise it doesn’t work. The reason for this is so that the interpreter [en.wikipedia.org] knows it’s not code, but just normal text.

Boolean Variable Rules

In boolean variables they can only equal true, or false. They do not require quotations because they are not normal text.

Number Variable Rules

Now this works for all Number Variable Types, they do not also require quotations because they are not normal text, and they are to be only numbers!

When using variables all you have to do to use them is reference the name, but make sure they are exactly the same! In programming it is «Caps Sensetive», meaning it has to have capitals if the variable has capital letters in it. Same with everything else which we will be learning! When referencing variables it does not need Quotations, otherwise it thinks your writing normal text, but really your trying to use a variable in code.

To add to a variable?

In this we will be learning how to use the If then Statement for making checks in your programs. First of all what is an If Then Else statement? Well they are pieces of code used to check numbers, booleans, and text to do certain things, below is an example of how it works!

Okay so one thing we need to talk about are Semi-Colons, usually you need semi-colons to end a line of code, but if it’s a grouping such as the if then else statement, or methods, etc. then they are not required. Another thing to talk about is how to end groupings ( if then else statement, or methods, etc. ), always when your using groupings you need to end it with «end» otherwise the code will not work properly, and could most likely output errors.

Now in this we will learn how to use else, which is used to do something else if it doesn’t equal.

Now what this does is that if Health does not equal 0 then it puts him as alive. You can also do else if, although the else if is part of the if then up-top it still need another end because its another grouping. below is an example.

Alright so basically what a function is, is it’s a group of code that can be started as many times as you like without re-writing the code multiple times, very suggested that you use this! By the way a method, and a function is the same thing just that in Object-Orientated Programming a method is contained in a class.

Читайте также:  vk скрипт отображения битрейта

Okay so remember how I said that functions are also groupings? Well if you remember, groupings have to have endings just like If Then Statements! What is the parameters in the parentheses? Well in there is what you want to pass, so that the function can use that value. All it really is, is that it’s a variable in those parentheses. An example of how it works should help you!

Why did I reference a function in print? Well the reason I did that is because when you make a function return something shown up-top, it acts like a variable, this is very useful! Go ahead and try this for yourself, it will help give you a better understanding of how it works! Here is another example by the way.

-Output: Hello World!

You don’t need to return anything, this is your choice to do.

Arrays are variables with lists, arrays can be 1-D, 2-D, or 3-D. 1-D Arrays mean they only have 1 list, 2-D Arrays have more than 2 lists, 3-D Arrays are just cluster ♥♥♥♥♥, quite literally most people get stuck at this point because it’s hard to think about. Anyways just think of a 3-D graph as for a 3-D Array. Heres how it’s setup.

Really confusing huh? I know how you felt when I first started. Anyways to get the values, you need to label the index for example.

Okay so heres something important you need to know, try to lessen the use of while loops, they can be a problem! Usualy while loops are to loop unless an arguement returns the opposite in the arguemnts, I’ll show you an example!

Now this while loop will loop forever because true is true. Here will be another example of toggling loops.

This will loop constantly until Tof is false.

For loops are the most common used loop. Mostly they are used to get every individual index in an Array, which you will learn how later. Here is example of how it works.

Okay so here is how it works, i = 1 is the starting value, 10 is the max number it will go to, 1 is how many it will add or subtract to the i variable. Now here is an example how to work it with arrays in 2 different ways.

-Output:
1: Aaron
2: Denis
3: Dave
4: Cherell

Here is another way.

-Output:
1: Aaron
2: Denis
3: Dave
4: Cherell

Источник

Подпишитесь, чтобы загрузить
HL Scripts V2 Hack (Updated!)

Addon is no longer updated but the cheat is still working.

.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.Addon is no longer updated.

PLEASE READ THE DESCRIPTION/FAQ BEFORE ASKING ANY QUESTIONS!
TYPE LUA_OPENSCRIPT_CL HLSCRIPT.LUA TO OPEN THE SCRIPT!
TYPE HL_MENU TO OPEN THE MENU!

The script has now been updated to include a lot more features.

This is a clientside lua script. It can be used on any server that allows the use clientside scripts (sv_allowcslua 1) such as DarkRP servers. It won’t work on servers that don’t allow clientside scripts (sv_allowcslua 0) by default.

Some of the features that it contains (New)
Configurable Xray, ESP and chams, Change colour and opacity.
Aimbot
Auto Bunny-hop (bhop script)
Chat-spammer
Name changer for darkrp namechanger script.
New entity finder, add your own entities.

Servers where you can use this script! (sv_allowcslua 1 servers)

To use this script. First of all make sure that sv_allowcslua is set to 1 on the server you are on. You can do that by typing in sv_allowcslua and it will show you if it is 1 or 0. This script will not run if the server does not have it set to 1!

If it has it set to 1. Type
lua_openscript_cl hlscript.lua

The script should open up!
Type hl_menu to open the menu.

The Xray is useful for Propkill gamemode also known as «wall-hack» «wallhack» or chams, its used in the propkill gamemode when its very fast paced and we use this addon to keep track, the wall hack can also be used in DarkRP too if the server allows it, Also the bunnyhop script is used in propkill too but can be used in DarkRP too 🙂 It wont work on servers running the bhop gamemode unless they have sv_allowcslua set to 1.

For the roleplayers who use my addon, I’ve now added an entity ESP to make your RP experience nicer! Money Printer-finder, Money-Finder and Weapon-finder all included! I also added a chat-spam features with ulx psay as well.

I hope you have fun with this script please feel free to ask any questions and I will be willing to answer them 🙂

FAQ
Can I get banned?
No you cannot get banned for using lua scripts in garry’s mod.

The script isn’t opening!
You either haven’t subscribed or the server doesn’t allow clientside scripts (sv_allowcslua 0) this will only work in singleplayer and multiplayer servers that have sv_allowcslua 1 by default, You can run it on sv_allowcslua 0 servers with an external program https://www.youtube.com/watch?v=Dw9FWXxXchg tutorial

How can I check if a server has sv_allowcslua?
Type in the console «sv_allowcslua» you will see a 1 or a 0 next to it. The 1 means its on (script should work) and the 0 means it wont be on (won’t work without a bypass there is a video to do that further down)

I have encountered a bug/glitch! Where do I report?
Make a comment below with the bug or glitch, If you get a lua error in the console post that too and I will see the bug and try to fix it.

I want to add (insert thing here!)
I am happy to add things that people ask for, it’s what Im here for to provide cool features for you guys to enjoy,. However bear in mind I can’t add everything, I try to update things as new ideas from you come in but not everything can be added, this is due to it being a clientside script meaning that htings that we need the server to authorise such as spawning in money/weapons can’t be done, If you want to do that sort of thing best off asking an admin or becoming one yourself 🙂

How can I run the script on sv_allowcslua 0 servers?
For that you need an external program. Here is a tutorial to do that here
https://www.youtube.com/watch?v=IcTzSdgN_mc

Can you get banned for that?
No there is no global banning system in gmod.

Источник

Луа скрипты для гаррис мод дарк рп

Create 3D2D text anywhere in the world.

This addon is now open source!.

A tool that makes anything into a fadable door.

Features
— Can select material.
— Can select sounds.
— Wire support.
— Can make NPC’s, vehicles and props into a fadable door.

Читайте также:  вывести версию python в скрипте

Authors: Conna, Lexi and Panthera Tigris

This thing only works for DarkRP 2.5.1+.
It doesn’t use accounts, just withdraw and deposit without codes.
No MySQL here unfortunately, it uses text files in the data directory for saving.

Simple plugin for ulx made by Bluebull107

REQUIRES
———————
— ULX installed on your server
— Nothing else (luckily)

Please note that my vapes are NOT narcotics. They are devices that emit healthy, organic vapor.

Watch videos or listen to music with friends in Sandbox—based on the Cinema gamemode.

What is the PermaProps:
The permaprops is a lightweight addon written to save entities on a map.
This is very useful to improve servers and help builders.

Warning, this does not auto add the job! You still need to copy paste it to jobs.lua
If you’re looking for an automatic job adding system, take a look at DConfig [www.gmodstore.com]

YOU NEED THE MR SHARED TEXTURES & SCRIPTS! VIEW IN WORKSHOP!

Install this on your DarkRP so you can have a bus driver job!

This job allows bus drivers to spawn almost any bus from the spawn menu for free.
When bus drivers change to another job, their bus gets r.

Simple health NPC, if you like it please don’t forget to rate it. It means I know to create more things in this style in future.

To spawn the NPC hold q, then find the entities tab and look in «Berkark» and it will be called Health NPC.

Simple armor NPC, if you like it please don’t forget to rate it. It means I know to create more things in this style in future.

To spawn the NPC hold q, then find the entities tab and look in «Berkark» and it will be called Armor NPC.

Fps Booster is a easy way to potentially help improve your Clients FPS. When first spawning into the server they are asked whether they would like to enable the FPS boost option or not. If they click yes a few c.

This spectate tool is vastly superior to that included in ANY admin mod. Features:

— Roam around without being seen. Like noclip while cloaked, but MUCH better
— Spectate players, eit.

An awesome skin from CS:GO which has been removed because of copyright issues.

This is a prop and weapon.

Doesn’t require anything but the addon.

If you like this, rate up and share.
Check out my other addons!
[url=http://steamcommunity.com/share.

Ground up rewrite meant to make up for some of the shortcomings of the first iteration of AdvDupe. Still considered alpha!

Simply press that subscribe button to get it.

Those instructions below, is only if you’re having it on your server.

This simple little addon adds many stock materials to be selected on your material STool list.

All materials come from either HL2 or Garry’s Mod. CSS materials are also added, but only if CSS is mounted. You do not need CSS for this mod to work.

IF YOU GET GETINFONUM ERRORS, DO THIS IN YOUR CONSOLE

Formerly ‘Easy Precision’, this tool allows exact movement of objects for accurate building. Push/pull, rotate, and sn.

==== END OF SUPPORT ====
I am no longer putting time into this addon.
Feel free to pick up development on your own.
Link to source: http:// waa.ai /va1g
==== END OF SUPPORT ====

Fixed for GM13, with other minor tweaks, by me.
Not original.

Those of you who play APB will know this machine well, as it is where you change out your gear and buy ammo.
Now it’s fully functional and here in GMod!

The machines have an ambient hu.

This will allow you to see your legs in first person, just l.

This + Doritos playermodels + Intervention SWEP = MLG PRO

Replaces the billboard adverting system with the old style of chat based adverting.

TEKASHI 6ix9ine taking gmod with one swipe.
JailRP is coming back boys. Get your fists ready.

The activation of module Hungermod on the Gamemode DarkRP gradually starves the players.
It is not obvious to eat during the absence of a cook and can kill us.

This addon blocks hunger only in the absence of a cook.
The admins jobs will also be blocke.

This addon is typically for servers, and it can’t really be edited that much. You can use this for yoru client, but I mean that just makes no sense. Anyways, here you guys go, it’s a simple join tag, and also a leave tag.

Any questions about it feel fre.

This addon stops hunger when there is no Cook in the game.
NEW: It also stops thirst if you have installed Advanced Cooking Mod [www.gmodstore.com]

Made by me (AquaRex)

This is a simple slot machine I made for DarkRp.

Player simply has to press E to play a game.

You can change how much the player has to pay for every game and other neat stuff in the init.lua file.
I left place values so you can add custom sounds t.

**WARNING** Without darkRP and CSS this may not work properly **WARNING**

Notes:
-Trees or stones.

Players stuck in other Players?! No longer with this addon!

A levelling system for DarkRP, previously published on Coderhire.
DarkRP 2.5.0+
You can get the GitHub version here: https://github.com/vrondakis/DarkRP-Leveling-System

Getting an error? Get the GitHub version!
Or you missed a comma!

I DID NOT MAKE THIS.

ORIGINAL AUTHOR: LegendofRobbo

+ Added 20 second cooldown timer to right click shouting.
• Modified ammo to 2 so only 2 boots can be thrown.

Thanks to Darkaaja for the above cha.

This is not a prop.
Doesn’t require anything but the addon.. Yay!

With your DarkRP server looking like the GmodStore how are you ever going to feel unique? This F4 menu was hosted on one of the most original and prestigious DarkRP servers out there, ClaimsRP!

Fully working Star Wars Lightsabers with a lot of customization options.

This script allows you to sit on nearly every flat edge! Just press alt (or the key you have walk bound to) + e (or the key you have use bound to) on the place you want to sit. Great for RP servers for that touch of sorta «realism»!

PSA:
I don’t intend this for DarkRP or TTT.
They may work with slight modifications, but I can’t guarantee support.
Thanks for subscribing!

The AK-47 Vulcan
“Powerful and reliable, the AK-47 is one of the most popular assault rifles in the wor.

Yet another addon inspired by Sinavestos and his amazing RP.

This is a fun little SWEP or Weapon i made on free time. Bascially you just pee. Comic fun really.
Can be used for Roleplay or trolling. Enjoy

This is a Tazer I created for Servers.

Читайте также:  custom npc скриптовая дверь

The Taser is usable by anyone, but you can change it to Admin Only if you wish.

This was designed for Sandbox, but It propably works with other game modes too.

Here are some features:

A good Level system with many features.

Features:
— Advanced HUD
— Customisable HUD position
— Prestige feature
— ULX commands
— XP bonus for usergroups (ULX, FAdmin & ServerGuard)
— Customisable XP Amount and Duration

Server ConVars:
— «top.

This is the required base pack for TDMSCars and TDMCars. This is a collection of textures that is shared by all of the vehicles.

Note that this is already a part of the SVN and you should not download it if you use the SVN!

Forza Motorsport © Mic.

A little script I wrote that gives a cash bonus to the civil protection when they arrest wanted players.

There are 3 console variables :

*ADDON NO LONGER SUPPORTED BY CREATOR*

IMPORTANT: This only works in the official DarkRP gamemode! For information on usage, check Q&A section below.
———-
This addon was a commission, made by Jackarunda
———-
Drug Dealer NPC Commands:
.

This is a DarkRP Mining addon which allows your players to earn money by mining!
You can edit the config file located in sleepy_mining/lua/autorun/sleepy_config.lua
Comment below and I will be happy to help you with any problems/suggestions.

Attention! You may need CS:S content

Good day to everyone! I’ve decided to make an addon for DarpRP servers which adds a fully working farm. I must state that not all components of the addon belong to me. I crossed 2 other addon and finished just a cou.

This is a fantasy themed mining system available FOR FREE to Garrysmod.

►►► Please read the description for all informations about the addon!
►►► This addon is not perfect!
►►► Click For The Terms Of Use If You Want To Rework This Addon.

PLEASE, BEFORE ASKING QUESTIONS MAKE SURE YOU’VE READ F.A.Q.! YOU’LL SAVE A LOT OF YOUR AND OUR TIME! Thanks.

Some spells contain flashing and bright lights.

Meet the replacement of old Harry Potter Wand! Now with even more spells, awe.

This is a addon made for DarkRP.

This addon lets you sell weapons fast & easy by just setting a price on it.

You are able to remove the price or change it.

How To Use:
Press Reload + Use (R+E) while looking at a weapon to se.

Harry Potter is the Boy Who Lived, the Chosen One, the hero of the Wizarding world. He grew up with Muggles, and then came to Hogwarts where he faced dangers and.

I’ve moved on from Garry’s Mod and I am now making a full game based on GMod Tower called Tower Unite.
https://store.steampowered.com/app/394690/

This piano exists also in Tower Unite!

The official latest release version of ULX admin mod (the same you’d get from our website). Please see our website at ulyssesmod.net for information and discussion. Only servers need to use this, not your individual joining players.

YOU MUST ALSO SUBSCR.

The official ULib. Please see our website at ulyssesmod.net for information and discussion.

For the most bleeding edge up to date versions of ULX and ULib, please download and use our github versions:
ULib: https://github.com/TeamUlysses/ulib
ULX: htt.

Auto reconnect Players when ur server crash

Bloodz and cripz playermodels. I couldn’t find a working workshop addon with ACTUAL PLAYER models. These aren’t made by me. All credit goes to S-Low.

There is no lua involved, so it won’t show up in model selection.

A cool addon that adds sweps wich allows you to do some cool moves!
At the moment the animations only look right when u stand still!

Ballas PM’s From GTA:SA (Grand Theft Auto: San Andreas)

ONLY PLAYER MODELS, IT’S NOT AN NPC’S OR RAGDOLLS.

This is the playermodel to be used for the «Fat Kid» variant of the Infection gamemode. This addon also includes an alternate «brony» t-shirt skin. It’s a retextured version of this: http://steamcommunity.com/sharedfiles/filedetails/?id=416939663

Models and textures: Marc «Pharaoh» Nuar
Porting, rigging and compiling: Rokay «Rambo»
.

Press and hold Left Click to be kool and smoke w33d

SMOKE WEED EVERYDAY /o/

Changelog: Added Bong Texture.

Snoop Dogg is an American rapper and actor from Long Beach, California. His music career began in 1992 when he was discovered by Dr. Dre of N.W.

The cardboard box from Metal Gear Solid!

Press primary fire to make an alert noise!
Press secondary to toggle between having the box be visible or invisible if you are ducking and staying still.
Duck to equip the cardboard box!

The cbox_stealth cva.

Toss babies to ease your nerves.
This SWEP is a joke. Stop taking it so serously.

Mouse1 to throw.
Mouse2 to taunt.

NOTE: Babies contribute to a player’s prop count.

Changes:
-V1.1 Added: 1st/3rd person viewmodels. Fixed: Babies now des.


Models and textures: Rockstar North
Porting, rigging and compiling: Voikanaa

once again i was browsing the old weapon addons of gmod, and came across this shuriken swep, to my surprise they where f*ckin weak, so here is it with improved damage. also it finally sticks to walls and npcs

Findable under Weapons Tab—>Other—>Shur.

Addon Share Advanced is a project to reinvent mailz’s original Addon Share to make it more efficient and take less time and less issues, Unfortunately, an aspect that we used is bugged and progress has to be halted. We hope you can understand.

No need of an old resource.AddWorkshop( «blalba» ) generator, this addon just adds them automatic, so your Users get the content of your collection automatic installed when they join.

Good Bones Position on Bike 😉

Fixed up the old RT camera from GM12 which was for some reason removed in the update.

A basic, open source banking NPC for DarkRP.

This is now unlisted as its not updated however its still compatible with any DarkRP version unless they decide to change a function I used (which I doubt). I suggest someone with coding expe.

NOTE: Part 2 and 3 are glitched and may not be coming out for a while.

Hey guys! This is my first addon so please don’t hate. I’m just now learning how to script etc. etc. for Gmod and I hope to soon learn to make full on addons such as maps or weapons.

Changelog
*Oct 30th 2016*
— Bunch of optimizations
— Completely new spawn area
— Deleted all the old spawn points
— Safezone during purge
— Bunch of building modifications
— More underground bases
— Bett.

DEVELOPMENT HAS STOPPED ON THIS MAP YOU ARE WELCOME TO DECOMPILE THIS MAP AN MODIFY TO YOUR NEEDS. Post a link to your server with the modifications below! I would love to hear about what you did.

GIVE ME PARTIAL CREDIT FOR THE EXTRAS AND CREDIT TO Cook.

Источник

Онлайн платформа