Results 1 to 9 of 9

Thread: key byte codes

  1. #1
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default key byte codes

    Ok i need the whole list of key byte goes so i can use.
    keyup and
    keydown

    If you dont get what im sayin, i need the number of the key code or something like that of all the letters numbers and everything else.


    Also i need a line procedure that can rapidly click the color that i tell it to click with ajudstable(or w/e) speed or a very fast speed.

    Thanks if anyone can spare time.

  2. #2
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    moparisthebest.com > tutorial section > 2nd or 3rd page, by KyleGut3

    Site isn't working for me atm though

  3. #3
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I cant find it, Can you give me a link please?

    And can you try to answer my second question if you can please?

  4. #4
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Site still doesn't work for me. Search in the tutorial section for kyle. I'll try again later.

    What's the procedure for? Will the color change location every time?

    repeat
    wait
    findcolor
    mouse
    until

  5. #5
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1-The procedure is for this game cald wild shooter 1, It just clicks.
    2-no it doesnt.

    If you can edit it, here is the procedure

    SCAR Code:
    procedure shootbottles;
    begin
    if(findcolorspiraltolerance(x,y,12464,msx1,msy1,msx2,msy2,25))then
    begin
    mouse(x,y,3,3, True)
    bottlesbroke:=+1
    end;
    end;

    And also,every 6 shots it does it has to reload.So every 6 times it clicks it has to press space.If you can help me with that to thanks.

    SCAR Code:
    procedure reload;
    begin
    if(bottlesbroke=+6)then
    begin
    keydown()
    keyup()
    end;
    end;

    Ps>I thought thats the way you do it for the second question.

  6. #6
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Space is 32 (site still isn't working, but I remembered the list is in JaniLabo's Massive SCAR Learning Package)



    repeat
    for i:=0 to 6 do
    Shoot;
    Reload;
    until isfkeydown(12);

  7. #7
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For which procedure?

  8. #8
    Join Date
    Nov 2006
    Location
    belgium
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  9. #9
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks rob!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Key : Byte.
    By Floor66 in forum OSR Help
    Replies: 5
    Last Post: 03-06-2008, 03:15 PM
  2. ALT Codes =Þ
    By warrockownz in forum Semi Stupid Pictures
    Replies: 13
    Last Post: 08-14-2007, 07:33 AM
  3. Key Codes.
    By Hey321 in forum OSR Help
    Replies: 9
    Last Post: 12-09-2006, 04:48 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
  •