Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 35
  1. #16
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by chanceownz View Post
    what is this for.. and how do I use it?? never used one like this before?

    and is it infaStar safe?
    You import a script and you press encrypt after selecting how many times you want to encrypt it, after you export it and it's ready to use.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  2. #17
    Lystic's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    'Murica
    Posts
    498
    Reputation
    31
    Thanks
    4,717
    My Mood
    Bashful
    Calling this an "Encrypter" is very misleading. This is simply an obfuscation method, and a poor one at best. All Obfuscaters that use this method in an attempt to "Protect" scripts from detection are very misleading. This will not make a script that was once detected undetected. Like normanjaydenFBI stated, "no one will be able to steal your code just by looking at it", but with a few quick modifications anyone could obtain your source code in a matter of seconds. A good script obfuscation method would do something like this:

    Code:
    _Decrypt = {_Key='yu>^K)dO>KEHpDO#xzry';_DecryptMe = _this;_counter = 0;_Array = toArray(_Key);for '_i' from 0 to (count(_decryptme)-1) do {if(_counter > (count(_Array)-1)) then {_counter = 0;};_var = (_decryptme select _i) / (_Array select _counter);_decryptme set[_i,_var];_counter = _counter + 1;};toString(_decryptme);};call compile([ 12584, 12285, 6820, 10904, 2400, 1599, 11600, 8216, 6510, 8625, 2208, 7560, 12880, 2176, 7663, 1120, 13920, 12322, 13110, 14036, 3872, 13455, 6138, 10716, 7875, 4592, 11600, 2528, 7192, 8325, 2208, 7272, 13440, 7616, 8532, 3395, 12600, 13420, 3648, 14399, 12584, 14157, 1984, 10904, 7800, 4305, 11500, 2528, 6882, 7350, 7038, 8424, 12880, 6732, 7663, 4060, 12600, 13542, 12540, 3872, 13189, 11817, 7192, 9776, 8325, 4100, 3200, 8295, 7130, 2400, 6762, 7272, 12992, 7888, 7979, 3990, 4680, 7198] call _Decrypt);
    this method is still easy to obtain but protects your code much more than the method the OP posted.

    before anyone asks, no i will not be releasing this method. you can create your own version of it.
    Last edited by Lystic; 07-13-2014 at 01:14 PM.

  3. #18
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by Lystic View Post
    Calling this an "Encrypter" is very misleading. This is simply an obfuscation method, and a poor one at best. All Obfuscaters that use this method in an attempt to "Protect" scripts from detection are very misleading. This will not make a script that was once detected undetected. Like normanjaydenFBI stated, "no one will be able to steal your code just by looking at it", but with a few quick modifications anyone could obtain your source code in a matter of seconds. A good script obfuscation method would do something like this:

    Code:
    _Decrypt = {_Key='yu>^K)dO>KEHpDO#xzry';_DecryptMe = _this;_counter = 0;_Array = toArray(_Key);for '_i' from 0 to (count(_decryptme)-1) do {if(_counter > (count(_Array)-1)) then {_counter = 0;};_var = (_decryptme select _i) / (_Array select _counter);_decryptme set[_i,_var];_counter = _counter + 1;};toString(_decryptme);};call compile([ 12584, 12285, 6820, 10904, 2400, 1599, 11600, 8216, 6510, 8625, 2208, 7560, 12880, 2176, 7663, 1120, 13920, 12322, 13110, 14036, 3872, 13455, 6138, 10716, 7875, 4592, 11600, 2528, 7192, 8325, 2208, 7272, 13440, 7616, 8532, 3395, 12600, 13420, 3648, 14399, 12584, 14157, 1984, 10904, 7800, 4305, 11500, 2528, 6882, 7350, 7038, 8424, 12880, 6732, 7663, 4060, 12600, 13542, 12540, 3872, 13189, 11817, 7192, 9776, 8325, 4100, 3200, 8295, 7130, 2400, 6762, 7272, 12992, 7888, 7979, 3990, 4680, 7198] call _Decrypt);
    this method is still easy to obtain but protects your code much more than the method the OP posted.

    before anyone asks, no i will not be releasing this method. you can create your own version of it.
    Lystic is right guys, this is a very simple method and it's the first one I've come up with. I'll be looking into more though.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  4. #19
    R@NDOM's Avatar
    Join Date
    Jun 2014
    Gender
    female
    Location
    C\Windows\SysWOW64
    Posts
    37
    Reputation
    10
    Thanks
    12
    My Mood
    Happy
    Thanks
    Nice Release
    ▽Fast Trade!! ▽
    CD KEY SHOP : Here
    Vouch Here : Here
    Skype : tjdrms4962



    ▼IN STOCK ▼



    Arma II OA CD KEY SHOP
    1 Key : $ 1.99 USD
    3 Key : $ 5.88 USD
    5 Key : $ 8.00 USD
    10 Key : $ 15.00 USD
    ----------------------------

    Skype : tjdrms4962



    ▽ My Internet Speed Here ▽

  5. #20
    extasy hosting's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    IN_MY.SQF
    Posts
    82
    Reputation
    10
    Thanks
    1,007
    My Mood
    Aggressive
    Nice man ! That saves me from doing it by hand
    ƁӀасќ Ḷеԍіѳи

  6. #21
    embassy's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    is it a key stealer?

  7. #22
    I'M GONNA HAVE TO EAT EVERY F--KING CHICKEN
    MPGH Member
    Chris's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1,086
    Reputation
    29
    Thanks
    2,780
    My Mood
    Psychedelic
    Quote Originally Posted by embassy View Post
    is it a key stealer?
    There are no key stealers/viruses/malware on MPGH.
    Vouch Thread
    Thank or +rep me if I helped you ★


  8. #23
    Lord Turles's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    46
    My Mood
    Aggressive
    This is great, thanks for this!

  9. #24
    éloigné chasseur's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    35
    My Mood
    Cynical
    Very good!

  10. #25
    MrMadNoobbie's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Location
    Up in cold north
    Posts
    78
    Reputation
    16
    Thanks
    652
    My Mood
    Cold
    is this still undetected? any one can prove that?

  11. #26
    Lincento533's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    On Coud Nine
    Posts
    140
    Reputation
    10
    Thanks
    152
    My Mood
    Daring
    Quote Originally Posted by MrMadNoobbie View Post
    is this still undetected? any one can prove that?
    Umm, read the op, this is not a hack.

  12. #27
    chok127's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Wales
    Posts
    144
    Reputation
    16
    Thanks
    45
    My Mood
    Aggressive
    Nice gj

  13. #28
    AlisaAlis's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Location
    probambi
    Posts
    58
    Reputation
    18
    Thanks
    682
    My Mood
    Inspired
    When i say 3 Times or more program stop working But Thx A lot for this

  14. #29
    JutilaO's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    Sorry for this question, but what can i exactly do with this? :P

  15. #30
    I'M GONNA HAVE TO EAT EVERY F--KING CHICKEN
    MPGH Member
    Chris's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1,086
    Reputation
    29
    Thanks
    2,780
    My Mood
    Psychedelic
    Quote Originally Posted by JutilaO View Post
    Sorry for this question, but what can i exactly do with this? :P
    Please learn to read.
    Quote Originally Posted by NormenJaydenFBI View Post
    A script encryptor which allowed you to encrypt your ArmA II/III scripts.
    No one will be able to steal your code just by looking at it.
    Vouch Thread
    Thank or +rep me if I helped you ★


Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Solved] Arma 2 and Oa script problems
    By Skate4Time in forum DayZ Help & Requests
    Replies: 3
    Last Post: 03-11-2014, 05:18 AM
  2. [WTS] ARMA II/ARMA III CD KEY SHOP
    By watafaking in forum Selling Accounts/Keys/Items
    Replies: 2
    Last Post: 09-21-2013, 10:56 PM
  3. Arma 3 RCON Grabber Script
    By php in forum ArmA 3 Help
    Replies: 7
    Last Post: 05-05-2013, 08:40 AM
  4. [Release] Shadowyfaze's ArmA III Script Menu
    By ImFazed in forum ArmA 3 Hacks & Cheats
    Replies: 58
    Last Post: 04-10-2013, 09:26 PM
  5. [Preview] Shadowyfaze's ArmA III Script Menu
    By ImFazed in forum ArmA 3 Marketplace
    Replies: 6
    Last Post: 03-18-2013, 02:55 PM

Tags for this Thread