ExclamationWhat is a Source Code?

Posts 17 of 7 · Page 1 of 1
What is a Source Code?
Hey guys, I have been looking all over to figure out what a source code is and how to use it. Everyone is saying it is too hard to teach someone how to use if they are not programmers. Well I (sadly) am not a programmer and would love to know how to use a source code. If you guys would please tell me how to use a source code and what it is then you would make me very happy!

P.S. The source codes I am talking about are for things like infinite ammo on CS:Go and such not something like a Java Game source code.
Source code is basically the code/commands used to make a program/tool/etc..
In your case,infinite ammo.
A source code looks like this :

Code:
block load
{
	es_xsetinfo primary 1 // Unlimited ammo/no reloads for primary.
	es_xsetinfo secondary 1 // Unlimited ammo/no reloads for secondary.
	es_xsetinfo he_nade 1 // Unlimited Grenades.
	eventscripts_noisy 1
}

event weapon_fire
{
	if (server_var(primary) == 1) then es playerset clip event_var(userid) 1 15
	if (server_var(secondary) == 1) then es playerset clip event_var(userid) 2 15
	if (server_var(he_nade) == 1) do
	{
		if (event_var(weapon) equalto "hegrenade") then es_give event_var(userid) weapon_hegrenade
	}
}


In order to find out the source code for infinite ammo or any other hacks/mods, you'll have to search around the forum and hope someone gave it away. Most of the time people don't give away their source code in order to protect their work from leechers and what not.
What you do with the code is you insert it into the right directory(or folder). In your case, it would go somewhere in the CS:GO directory in your computer.

If you do not know what source code is, you shouldn't be trying to get right into trying to hack a game. lol
Learn a bit more about programming to make your own tools/mods.
Quote Originally Posted by Gill Bates View Post
Source code is basically the code/commands used to make a program/tool/etc..
In your case,infinite ammo.
A source code looks like this :

Code:
block load
{
	es_xsetinfo primary 1 // Unlimited ammo/no reloads for primary.
	es_xsetinfo secondary 1 // Unlimited ammo/no reloads for secondary.
	es_xsetinfo he_nade 1 // Unlimited Grenades.
	eventscripts_noisy 1
}

event weapon_fire
{
	if (server_var(primary) == 1) then es playerset clip event_var(userid) 1 15
	if (server_var(secondary) == 1) then es playerset clip event_var(userid) 2 15
	if (server_var(he_nade) == 1) do
	{
		if (event_var(weapon) equalto "hegrenade") then es_give event_var(userid) weapon_hegrenade
	}
}


In order to find out the source code for infinite ammo or any other hacks/mods, you'll have to search around the forum and hope someone gave it away. Most of the time people don't give away their source code in order to protect their work from leechers and what not.
What you do with the code is you insert it into the right directory(or folder). In your case, it would go somewhere in the CS:GO directory in your computer.

If you do not know what source code is, you shouldn't be trying to get right into trying to hack a game. lol
Learn a bit more about programming to make your own tools/mods.
That's a server-side plugin, not cheats (just for OP's info); it requires EventScripts. You couldn't "inject" this or anything like that.
Never heard of this "source code" that isn't actually source code.
actually he heard what he readed anywere and is now posting it with the first "source code" he found out there ahahha
The real question is, what isn't a source code.
Posts 17 of 7 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?