GTA: Modification Area
Would you like to react to this message? Create an account in a few clicks or log in to continue.
GTA: Modification Area

A website for the GTA modding scene

Search
 
 

Display results as :
 


Rechercher Advanced Search

Latest topics
» Big-game starts raising Schneider's profile
HEX Encryption EmptySun Mar 04, 2012 2:28 am by lavivi

» [Help] cleo created lighting
HEX Encryption EmptyThu Oct 14, 2010 1:03 am by findmy012

» Mission Question
HEX Encryption EmptyThu Oct 14, 2010 1:02 am by findmy012

» [IV] Spoiler Script
HEX Encryption EmptyThu Oct 14, 2010 1:02 am by findmy012

» Mission mod [help]
HEX Encryption EmptySat Sep 18, 2010 5:50 pm by jayd00

» Bc7 Mod Help
HEX Encryption EmptyFri Aug 20, 2010 11:19 am by pengpeng

» Found a bug
HEX Encryption EmptyFri Dec 18, 2009 4:22 am by _CJ360_

» [IV] Novitec Rosso 599 GTB
HEX Encryption EmptyTue Nov 17, 2009 4:22 pm by Kotton

» Hello/Guidance Request
HEX Encryption EmptyMon Oct 12, 2009 6:45 am by Adler

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Affiliates
image

Image

Image

Image

Image

Image

Image

Image

Image

Image

image

Image

steve-m.com

Image


----- Русский -----

Если ваш сайт содержит большую коллекцию SCM/CLEO-скриптов (больше 16), напишите на мой e-mail, и я добавлю его в список. Приветствуются скрипты, которые не встречаются на других сайтах ... Спасибо. ))))


----- English -----

If your website has a big enough collection of SCM/CLEO scripts (more than 16) notify me by e-mail
, and I will add it to the list. The unique scripts are preferable ... Thank you. ))))
Log in

I forgot my password



April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar


You are not connected. Please login or register

HEX Encryption

2 posters

Go down  Message [Page 1 of 1]

1HEX Encryption Empty HEX Encryption Fri Feb 06, 2009 4:03 am

james227uk

james227uk
Admin

An elite method of preventing mod theft.

Simply write a message like this, putting _ instead of a space
Code:

hex
"Mission_by_James227uk" 00
end

00 is needed at the end, otherwise the game, will show
hex, >message< end not just the message.

Then, you can use this site to decrypt it:

http://www.paulschou.com/tools/xlate/

http://james227ukmods.synthasite.com

2HEX Encryption Empty Re: HEX Encryption Fri Feb 06, 2009 4:10 am

gtasbigfoot

gtasbigfoot
Admin

==For those who do not understand hexadecimal this should give you a clue, what it is:==


In mathematics or/and computer science hexadecimal (HEX, or hexa, or base-16, ;name comes from numeral systems)
is a numeral system with a radix. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine,
and A, B, C, D, E, F (or through an f) to represent values ten to fifteen.

It is often used in digital electronics and computer engineering.
It's very hard to understand if the person has not got very high skill in computer math. It's prime use is be slightly-more-readable then
the binary numeral system the binary system is used internally by all modern computers.


Look at this example:


Code:

    0x245
    ____________________
x4.5
        2614.5
    ____________________

Would be the same as:
Code:
 
       
581
    ____________________
x4.5
        2614.5
    ____________________


Look at this message:

Code:

48 65 6C 6C 6F 2E 41 6E 64 68 65 72 65 77 65 67
6F 21

What I said was:

Code:

"Hello. And here we go!"

Note: Spaces can not be read by hexa so put '_' as a space between each word. Which in hexa would be: 5F
so with spaces it will look like this:

Code:

48 65 6C 6C 6F 2E 5F 41 6E 64 5F 68 65 72 65 5F
 77 65 5F 67 6F 21

Code:

0xFFFFFFFF  -1
0xFFFFFFFE  -2
0xFFFFFFFD  -3
0xFFFFFFFC  -4
0xFFFFFFFB  -5
0xFFFFFFFA  -6
0xFFFFFFF9  -7
0xFFFFFFF8  -8
0xFFFFFFF7  -9
0xFFFFFFF6  -10
0xFFFFFFF5  -11
0xFFFFFFF4  -12
0xFFFFFFF3  -13
0xFFFFFFF2  -14
0xFFFFFFF1  -15
0xFFFFFFF0  -16

James; I think we should, also do functions like sine and cosine, things like this in this topic. What you think?

http://gtamodding.com

3HEX Encryption Empty Re: HEX Encryption Fri Feb 06, 2009 5:48 am

gtasbigfoot

gtasbigfoot
Admin

RGB


<see image below>
These are color codes in RGB in each box is 6 letters in HEX, first two are R, then G, then B.
If you mix these colors up you will get the color of what the box is.

Code:

R = Red
G = Green
B = Blue

You can do it in range of 0..255(0x0 - 0xFF)
like for example:

Code:

R = 0xFF
G = 0x0
B = 0x0

That ^ will be completely red.

Code:

R = 0x0
G = 0xFF
B = 0x0

That ^ will be completely green.

Code:

R = 0x0
G = 0x0
B = 0xFF

That ^ will be completely blue.

Code:

R = 128
G = 0
B = 128

That ^ will be completely purple.

HEX Encryption Hextab10

So example of using that table to make the fade color in game blue:

Code:

0169: set_fade_color_RGB 0x0 0x0 0xFF

http://gtamodding.com

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum