Is Chat-GPT4 Strong?

Discussion in 'RuneScape Programming' started by wtf bbq, Apr 8, 2023.

Tags:
Is Chat-GPT4 Strong?
  1. Unread #1 - Apr 8, 2023 at 12:44 AM
  2. wtf bbq
    Joined:
    Aug 11, 2012
    Posts:
    179
    Referrals:
    0
    Sythe Gold:
    40

    wtf bbq Active Member

    Is Chat-GPT4 Strong?

    I literally have 0 coding experience.. would this skeleton work if I knew what to fill in to start automating clicks? This is actually kind of crazy and ground-breaking if true.


    Program ClickOnColor;

    // Function to find a color on the screen
    function FindColor(color: Integer): Boolean;
    var
    x, y: Integer;
    begin
    Result := False;
    // Capture the screen
    CaptureScreen;
    // Loop through each pixel of the captured screen
    for x := 0 to ScreenWidth - 1 do
    begin
    for y := 0 to ScreenHeight - 1 do
    begin
    // Get the color of the current pixel
    if GetPixel(x, y) = color then
    begin
    // Color found, set the result to True and exit the loop
    Result := True;
    Exit;
    end;
    end;
    end;
    end;

    var
    colorToFind: Integer;
    x, y: Integer;
    begin
    // Example usage: find the color red (RGB value: 255, 0, 0)
    colorToFind := $FF0000;
    if FindColor(colorToFind) then
    begin
    // Get the screen coordinates of the color found
    x := LastX;
    y := LastY;

    // Click on the screen coordinates
    Click(x, y);
    writeln('Clicked on color at coordinates (', x, ', ', y, ')');
    end
    else
    writeln('Color not found');
    end.
     
  3. Unread #2 - Apr 8, 2023 at 9:05 AM
  4. XWX
    Joined:
    Apr 25, 2005
    Posts:
    723
    Referrals:
    0
    Sythe Gold:
    18

    XWX Apprentice

    Is Chat-GPT4 Strong?

    Seems like ChatGPT has been looking through Simba API & scripts.
     
    ^ Dabber420 likes this.
  5. Unread #3 - Apr 20, 2023 at 1:35 AM
  6. PijaVenosa
    Joined:
    Oct 16, 2012
    Posts:
    504
    Referrals:
    0
    Sythe Gold:
    824
    Discord Unique ID:
    218731748610015232
    Discord Username:
    Totomi#0070
    Poképedia Pokémon Trainer Tier 1 Prizebox (3)

    PijaVenosa Forum Addict
    $200 USD Donor New

    Is Chat-GPT4 Strong?

    Watch out with this! Lots of iterations.

    Better to return the X Y coordinates. Much more useful function.

    The rest of the code won't work since LastX and LastY are undefined.

    ChatGPT is way stronger than this btw.
     
  7. Unread #4 - Apr 20, 2023 at 1:36 AM
  8. PijaVenosa
    Joined:
    Oct 16, 2012
    Posts:
    504
    Referrals:
    0
    Sythe Gold:
    824
    Discord Unique ID:
    218731748610015232
    Discord Username:
    Totomi#0070
    Poképedia Pokémon Trainer Tier 1 Prizebox (3)

    PijaVenosa Forum Addict
    $200 USD Donor New

    Is Chat-GPT4 Strong?

    An evolutionary algorithm that allows ChatGPT to create accounts and write the code, and killing the prompts and biases when the account gets banned would be cool.
     
  9. Unread #5 - Jun 1, 2023 at 8:56 AM
  10. Pro Skill
    Joined:
    Aug 24, 2020
    Posts:
    1,096
    Referrals:
    0
    Sythe Gold:
    954
    Vouch Thread:
    Click Here

    Pro Skill Formerly known as ProSkill

    Is Chat-GPT4 Strong?

    Flip your device long ways. On the fat upper right-hand side should be an Edit option.
     
    ^ SmackedSasuage likes this.
< RSNChecker | >

Users viewing this thread
1 guest


 
 
Adblock breaks this site