Who made SA-MP? -
PilotXtreme - 27.10.2010
Who made SA-MP?
Re: Who made SA-MP? -
Kitten - 27.10.2010
Kye
The message you have entered is too short. Please lengthen your message to at least 8 characters
Re: Who made SA-MP? -
PilotXtreme - 27.10.2010
Is he from New Zealand?!
Re: Who made SA-MP? -
Tails - 27.10.2010
I believe he is from Australia. Not sure, tho.
Re: Who made SA-MP? -
Matej_ - 27.10.2010
Quote:
Originally Posted by Tails
I believe he is from Australia. Not sure, tho.
|
I think that he's from USA.
This forum requires that you wait 120 seconds between posts. Please try again in 12 seconds.
Re: Who made SA-MP? -
DarrenReeder - 27.10.2010
So, did kye just make it all by himself??
Does anyone know Kye's background
Re: Who made SA-MP? -
Matej_ - 27.10.2010
Quote:
Originally Posted by DarrenReeder
So, did kye just make it all by himself??
|
Yes Kye & i think 2 more developers.
Edit:
kyeman – programming, reverse engineering, scripting
Spooky – programming, reverse engineering, scripting
Mike – scripting, website administration
Cam – scripting, SCM
jax – scripting
Luke – documentation
Re: Who made SA-MP? -
woot - 27.10.2010
Ever saw the "About" button in the SA-MP server browser? Hard to find, but has all you need!
Re: Who made SA-MP? -
Brian_Furious - 27.10.2010
Quote:
Originally Posted by Matej_
Yes Kye & i think 2 more developers.
Edit:
kyeman – programming, reverse engineering, scripting
Spooky – programming, reverse engineering, scripting
Mike – scripting, website administration
Cam – scripting, SCM
jax – scripting
Luke – documentation
|
What about ****** dude?? He's a SA-MP scripter too
Re: Who made SA-MP? -
General Abe - 27.10.2010
Quote:
Originally Posted by PilotXtreme
Is he from New Zealand?!
|
no
Quote:
Originally Posted by Matej_
I think that he's from USA. 
|
no
Quote:
Originally Posted by Brian_Furious
What about ****** dude?? He's a SA-MP scripter too
|
no
He's Aussie.
Re: Who made SA-MP? - [03]Garsino - 27.10.2010
What are you facepalming for? ****** was in the scripting team but afaik he left during the GTANET drama
Re: Who made SA-MP? -
Calgon - 27.10.2010
Quote:
Originally Posted by [03]Garsino
What are you facepalming for? ****** was in the scripting team but afaik he left during the GTANET drama
|
****** is listed as a 'past programmer', not a 'scripter' in the about part in the SA-MP client. He is not listed as a
scripter.
Quote:
Originally Posted by Brian_Furious
Unless post
|
Do you mean: useless?
Re: Who made SA-MP? - [03]Garsino - 27.10.2010
He's from Australia.
Re: Who made SA-MP? -
DarrenReeder - 27.10.2010
How is reverse engineering used to make samp?
Re: Who made SA-MP? -
bpeterson - 27.10.2010
Quote:
Originally Posted by DarrenReeder
How is reverse engineering used to make samp?
|
It's still used for memory addresses and stuff.
Let's say you want to set player's money, but since you don't have GTA:SA's source, you need the memory address where GTA stores money.
Код:
*(BYTE *)0x123456 = 1337;
(BYTE is an unsigned char)
So basically, if that memory address was real, it would set the player's money to 1337.
Opcodes are also used in SA:MP.
Re: Who made SA-MP? -
DarrenReeder - 27.10.2010
Ah, so it basicly looks for where certain stuff is stored when playing GTA? so, where your gun slot 1, slot 2, slot 3 etc. is stored, then they use like C++ and stuff to make it so you can use pawn to just use a function to change it??
And then thats how hacks would do it aswell??
Re: Who made SA-MP? -
bpeterson - 27.10.2010
Quote:
Originally Posted by DarrenReeder
Ah, so it basicly looks for where certain stuff is stored when playing GTA? so, where your gun slot 1, slot 2, slot 3 etc. is stored, then they use like C++ and stuff to make it so you can use pawn to just use a function to change it??
And then thats how hacks would do it aswell??
|
Well, not everything is exactly stored in variables.
You need to use in-line assembly in C++ to call some GTA functions. Like this:
Код:
void CallGTAFunction()
{
DWORD dwFunc = 0x123456;
_asm
{
push 0
call dwFunc
}
}
This would call a function at 0x123456 memory address.
Read some Assembly tutorials for more information.
Re: Who made SA-MP? -
MaTrIx4057 - 27.10.2010
Quote:
Originally Posted by Jay_
Kye, Peter, aru, Mike, Cam, Luke, jax, ******, spookie
|
You put him as second even if he didn't do pile of crap.
Re: Who made SA-MP? -
Popz - 27.10.2010
Thanks to everyone who posted THE SAME STUFF OVER AND
OVER AND OVER. It's really helpful for us.