Results 1 to 25 of 25

Thread: I know this has been posted thousand times...

  1. #1
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default I know this has been posted thousand times...

    but someone once again posted in the free forum about a function that checks if
    the combat lvl is over something, and I came up with great noob solver.
    (The fake runtime error will confuse the shit out of them)

    SCAR Code:
    procedure getSCAR(Disable: Boolean);
    {* DO NOT TOUCH THIS IF YOU ARE NOT GOOD WITH SCAR *}
    var
      A, B, F: string;
    var
      D, I, G, L: Integer;
    var
      C: array of Char;
      E: array of Integer;
    begin
       A := IntToStr(GetCombatLevel);
       L := StrToInt(A);
       if(not(L = GetCombatLevel))then
         TerminateScript;
       if(StrToInt(A) >= 100)then
       begin
         D := 3;
       end;
       if(StrToInt(A) >= 10)then
       begin
         D := 2;
       end else
       begin
         D := 1;
       end;
       for I := D downto 1 do
       begin
         C[i] := StrGet(A, I);
       end;
       for I := 0 to D -1 do
       begin
         E[i] := StrToint(C[i]);
       end;
       for I := Length(E)-1 downto 0 do
       begin
         F := F + StrToInt(E[i]);
       end;
       G := StrToInt(F);
       if(G < 20) or Disable then
       begin
         Writeln('[Runtime Error] : Exception: Access violation in line 1 in script '+ ScriptPath);
       end;
    end;

    Havent tested but it should be okay.

    I made it do some stoopid stuff, it converts the users combat level backwards then converts to string, copyes there cant even remember anymore, but however if noobs try to solve it, it takes too much time from em and they give up.

    {* DO NOT TOUCH THIS IF YOU ARE NOT GOOD WITH SCAR *}
    This shall also slow them down.

  2. #2
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Hm.. Nice.. But you should put this instead that writeln.

    SCAR Code:
    RaiseException(erCustomError, 'SCAR has encountered a problem with your sexuality and will now stop running this script.');

    Stops the script.

  3. #3
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    lmao, or make it anti-swedish

  4. #4
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by n3ss3s View Post
    lmao, or make it anti-swedish
    What a great idea.

    Muute, mun scriptis on kans tollane feikki virhe ilmotus....

  5. #5
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    w00t! Screw [FINNISH] tags Nyt ku oon sanonu enemmä ku 3 sanaa täs postis ton w00tin lisäks, YoHoJo ei voi valittaa

    EDIT: Lol, someone Rasta Magician pmed me for giving credit for "his idea" lol...

    PHP Code:
         -------
      /              \
     |               |
     |
    One Credit |
      \             /
         ------- 

  6. #6
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    That credit is kinda failed.

  7. #7
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Very nice lol. Just stick this is Wizz's ess miner


  8. #8
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Yeah, I dont know what happened to the One Credit.

  9. #9
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I hate how they want credit for ideas that have already been made...
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  10. #10
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    A := IntToStr(GetCombatLevel);
    Couldnt you just go:
    SCAR Code:
    A := 99;

    And that would make the whole thing pointless?
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  11. #11
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Umm wtf? Didnt quite understand.

  12. #12
    Join Date
    Apr 2007
    Location
    Australia
    Posts
    4,163
    Mentioned
    9 Post(s)
    Quoted
    19 Post(s)

    Default

    he's saying that to bypass the script, they could just have A := 99 somewhere in the script, making it think that the combat level was 99

  13. #13
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    A) A is a string. B) Look at it now, I dont think they go more after from that.

  14. #14
    Join Date
    Oct 2006
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Or hide it all the way on the right, next to a banking procedure or something they cant remove so they dont see it =)

  15. #15
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Yes thats propably the best way..

  16. #16
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    May of gotten the idea from my topic "AntiNoob" in the snippets in the free section of the forum. But your's is better .
    I like my coffee black just like my metal.

  17. #17
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    The idea is old...

  18. #18
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Code:
    erCannotImport
    erCouldNotCallProc
    erDivideByZero
    erException
    erInterfaceNotSupported
    erInvalidHeader
    erInvalidOpcode
    erInvalidOpcodeParameter
    erInvalidType
    erMathError
    erNoError
    erNoMainProc
    erNullPointerException
    erNullVariantError
    erOutOfGlobalVarsRange
    erOutOfMemory
    erOutOfProcRange
    erOutOfRange
    erOutOfRecordRanger
    erOutOfStackRange
    erTypeMismatch
    erUnexpectedEof
    erVersionError
    Have fun
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  19. #19
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    haha yeah.. The nubs would be suprised of every of those appears same time :P

  20. #20
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Which is impossible...
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  21. #21
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    ISM?

    nah, no point making tons of errors.

  22. #22
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    And, making an error terminates the script... How can you call an error in an in-active script?
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  23. #23
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    ? If you mean that calling error after error, yes, impossible :P

  24. #24
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Not in the happy hotel *giggle* I've made it happen there

    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  25. #25
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    ok i don't get the meaning of this nor i understand it
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 12-01-2007, 08:10 PM
  2. A Picture says a Thousand words
    By ruler in forum News and General
    Replies: 0
    Last Post: 02-08-2007, 04:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •