HOW TO make custom Stealth Cheat Engine | Bypass Forza Horizon 5 & other anti-cheats [2024]

Поделиться
HTML-код
  • Опубликовано: 22 янв 2025

Комментарии • 382

  • @Sethioz
    @Sethioz  9 месяцев назад +6

    Modified / Stealth CE (updated 20.jun.2024) available on my Patreon page - www.patreon.com/posts/83102226
    Need high speed anonymous VPN? = torguard.net/aff.php?aff=3961 (use TSP30 code for 30% lifetime discount)
    How to rename cheat engine (old simple method) = ruclips.net/video/zq9OHgRBBzY/видео.html
    NOTE - if some games crash/close after first scan, then as @Astrashastra pointed out, go into edit - settings - scan settings and tick the box "don't store the temporary scanfiles in the windows tempdir" and choose a different location, i suggest choosing different drive from where your OS is installed on.

  • @brpz
    @brpz 9 месяцев назад +12

    ayy thanks for the guide i was confused why some games were detecting it instantly even tho i used the old tutorials

    • @Sethioz
      @Sethioz  9 месяцев назад +4

      yeah some devs are adding more complex detection methods, don't expect this to last too long, maybe 2-5 years until devs start patching stuff.

    • @1.............24.53
      @1.............24.53 9 месяцев назад

      thats a pretty long time I'm still searching for a better method to solve this annoying problem. :]
      @@Sethioz

    • @Ambient99939
      @Ambient99939 9 месяцев назад

      @@Sethioz Hey there i had a Doubt, so i was trying the car speed hack in cyberpunk 2077, i have the fitgirl version 2.1 of the game. Now i follow the exact same steps which you do, unknown initial value, increased value, decreased value etc. However after finishing the process i am left 10-20 results, and when i change the value of those addresses they keep reverting back. Also it seems that they represent the value shown by the car speedometer, which means they are the display value. Any tips on how to scan differently, as whenever i do the process, i never get the actual value, as you get in your video, so what am i doing wrong?

    • @amhirmama
      @amhirmama 3 месяца назад

      ​@@Ambient99939You're alone with this one😭🙏

  • @michaelibrahim3085
    @michaelibrahim3085 7 месяцев назад +15

    For those having issues while compiling, try deleting the current version of lazarus you may have and installing lazarus version 2.2.2. I had a similar issue and doing this fixed it for me

    • @coolhandpg
      @coolhandpg 4 месяца назад

      Appreciate you, fam

    • @codyfahnestock2902
      @codyfahnestock2902 4 месяца назад

      This fixed it for me as well, you can see at the top of his window he is using 3.2.2

    • @TheProKiwii
      @TheProKiwii Месяц назад

      @@michaelibrahim3085 mines compiled but when I go to the bin I don’t have all the extra DLL files so when I try to run it nothing happens I get an error

  • @AbdoZaInsert
    @AbdoZaInsert 5 месяцев назад +3

    Nice, I made it work 1st time try. I have used Notepad++ plugin to edit the ANSI string.
    Also for the game I made this "Stealthy" Cheat Engine, It required me to restart the PC for it to start after compiling the modified CE code.
    Thanks pal !

    • @Sethioz
      @Sethioz  5 месяцев назад

      requiring restart makes no sense, unless you messing about with kernel tools and those need to be made stealth aswell as almos tall anti-cheats have it blacklisted.

    • @AbdoZaInsert
      @AbdoZaInsert 4 месяца назад +3

      @@Sethioz You're such a nice guy

  • @rev_schubert5289
    @rev_schubert5289 3 месяца назад +1

    Thanks dude, it works! btw never would've found this video if you hadn't commented on the other video so tysm.

  • @FINDROBLOX
    @FINDROBLOX 3 месяца назад +1

    thank you dude fr been wondering how to fix the errors for a while i appreciate it earned a sub

  • @joshsines5592
    @joshsines5592 9 месяцев назад +4

    Mine worked for about a hour then now won’t find any value

  • @Anterior522
    @Anterior522 9 месяцев назад +1

    its still saying get filename from lua

  • @Daronblox
    @Daronblox 8 месяцев назад +12

    6:06 what is the code?

    • @yungtoga
      @yungtoga 7 месяцев назад

      Seriously don't understand how it's so hard for everyone to get this straight.. I'll send you the lines of code I used to fix my errors. Like he said in other comments it's a simple ChatGPT lookup but still people insist on begging for help pestering him. I'll also copy & paste this to other comments so they'll understand. Don't know if it'll work for you, but here.
      If you get this error: " cesupport.pas(194,115) Error: Identifier not found "ExtractFileNameWithoutExt " - Use this line of code instead: url := getbase + '?cewidth=' + IntToStr(clientwidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;
      If you get this error (for the next) : " frmSaveSnapshotsUnit.pas(261,8) Error: Identifier not found "ExtractFileNameWithoutExt " -
      Use this line of code instead: f := ChangeFileExt(ExtractFileName(savedialog1.FileName), '');
      If you get this error (for the next) : " LuaHandler.pas(14944,23) Error: Identifier not found "ExtractFileNameWithoutExt "
      Use this line of code instead: lua_pushstring(L, ChangeFileExt(ExtractFileName(Lua_ToString(L,1)), ''));
      The Lua errors are told in the video. Simply put a " // " at the start of the 2 lines of code at 954 and 955. -
      This is my current point in the video: 8:20 (so please don't ask for more help if needed after this I don't know myself since I'm not there)

    • @aztrooi
      @aztrooi 5 месяцев назад +3

      It seems that the compiler is having trouble recognizing the function ExtractFileNameWithoutExt. This function is not a built-in function in Delphi, but you can implement it easily as follows:
      function ExtractFileNameWithoutExt(const FileName: string): string;
      begin
      Result := ChangeFileExt(ExtractFileName(FileName), '');
      end;
      Add this function to your code, and the error should disappear. Make sure to declare this function before its usage, at the beginning of the file or in a separate section for function declarations. I hope this solves your issue. If you need further assistance, feel free to ask.

    • @BestYoutube_Clips.
      @BestYoutube_Clips. 4 месяца назад

      @@aztrooi bro it dosent work

    • @aztrooi
      @aztrooi 4 месяца назад

      @@BestRUclips_Clips. This worked for me.
      Did you put the function in a different part of the code? A higher part and outside the scope of other functions?

    • @ความจริง-ฮ8ฌ
      @ความจริง-ฮ8ฌ 4 месяца назад

      begin
      {$ifdef windows}
      if (counter = 0) or (secondsSinceLastShowAd > 120) then
      begin
      GetWindowThreadProcessId(GetForegroundWindow, pid);
      if (counter = 0) or (GetCurrentProcessId = pid) then //only show the ad when the foreground window is ce or if it's the first ad
      begin
      if visible and browserisvalid then
      begin
      inc(counter);
      // สร้าง URL โดยใช้ฟังก์ชัน ExtractFileNameWithoutExt
      url := getbase + '?cewidth=' + IntToStr(ClientWidth) +
      '&ceheight=' + IntToStr(ClientHeight) +
      '&fn=' + ExtractFileNameWithoutExt(application.Name) +
      '&counter=' + IntToStr(counter) +
      getoptionalstring;
      browser.Navigate(url); // นำทางไปยัง URL ที่สร้างขึ้น
      end;
      secondsSinceLastShowAd := 0; // รีเซ็ตตัวนับเวลาที่แสดงโฆษณา
      end;
      end;
      {$endif}
      end;

  • @Leyzsus
    @Leyzsus 8 месяцев назад +4

    what's the code bro please? the one you searched in chatgpt

    • @yungtoga
      @yungtoga 7 месяцев назад

      Seriously don't understand how it's so hard for everyone to get this straight.. I'll send you the lines of code I used to fix my errors. Like he said in other comments it's a simple ChatGPT lookup but still people insist on begging for help pestering him. I'll also copy & paste this to other comments so they'll understand. Don't know if it'll work for you, but here.
      If you get this error: " cesupport.pas(194,115) Error: Identifier not found "ExtractFileNameWithoutExt " - Use this line of code instead: url := getbase + '?cewidth=' + IntToStr(clientwidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;
      If you get this error (for the next) : " frmSaveSnapshotsUnit.pas(261,8) Error: Identifier not found "ExtractFileNameWithoutExt " -
      Use this line of code instead: f := ChangeFileExt(ExtractFileName(savedialog1.FileName), '');
      If you get this error (for the next) : " LuaHandler.pas(14944,23) Error: Identifier not found "ExtractFileNameWithoutExt "
      Use this line of code instead: lua_pushstring(L, ChangeFileExt(ExtractFileName(Lua_ToString(L,1)), ''));
      The Lua errors are told in the video. Simply put a " // " at the start of the 2 lines of code at 954 and 955. -
      This is my current point in the video: 8:20 (so please don't ask for more help if needed after this I don't know myself since I'm not there)

  • @MelekaiV
    @MelekaiV 3 месяца назад +2

    So i got it all done and when i go to run the program as you did it says that this app cant run on my pc im on windows 11 everything worked through it for setting up the program but for some reason i cant run it any help would be greatly appreciated

    • @julianagam3623
      @julianagam3623 Месяц назад

      dont use windows 11, try windows 10, i got many error on win 11

  • @Nerddddclips
    @Nerddddclips 3 месяца назад +4

    what is the line of code u use?

    • @Cruc1dyt
      @Cruc1dyt Месяц назад

      url := getbase + 'cewidth=' + IntToStr(ClientWidth) + '&ceheight=' + IntToStr(ClientHeight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '');
      browser.Navigate(url);

  • @JingLongTimeLing
    @JingLongTimeLing 6 месяцев назад +9

    can you please post the 2 lines you got from chatgpt so we can copy and paste them ?

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      I used bing copilot lol but it worked so here's the code: url := getbase + '?cewidth=' + IntToStr(ClientWidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;

  • @Nerddddclips
    @Nerddddclips 3 месяца назад +1

    everything works like it's suppose to but when i run the game i get the error: error while opening this process.
    it works fine in other games / programs.

    • @Sethioz
      @Sethioz  3 месяца назад

      most likely cuz retard devs are using some kernel shit, you shouldn't play games that mess on kernel level. games have no business running in kernel level, it's most autistic thing i have seen devs do.
      kernel games don't detect cheats any better, they do this for spying purposes, they have access to all of your private info, including this comment. this is how they know what tools people use for hacking aswell.
      only way to bypass this is to run part of ce in kernel level aswell, but you have to compile the driver for that. otherwise ce has kernel tools, but they're all obsolete and detected, only way is custom compile driver aswell.

  • @IreneLenz
    @IreneLenz Месяц назад

    i did every single step i even tried with the vmprotect but as soon as i try to open already changed named cheat engine it crashes and go to desktop
    2024

  • @HayzyHorizon
    @HayzyHorizon 6 месяцев назад +1

    Successfully compiled but when attempting to run the x86_64-SSE4...exe file (as administrator), there is just the loading circle on my mouse for about 15 seconds and nothing opens, fh5 or not

  • @cod564
    @cod564 9 месяцев назад

    what do i do at in the minute 6:19 where you copy paste something from chat gpt what do i type in there

    • @cod564
      @cod564 9 месяцев назад

      in the table row 194, 195 please help im stuck right know i dont know what to do

    • @Sethioz
      @Sethioz  9 месяцев назад

      just type what i pasted ...

    • @cod564
      @cod564 9 месяцев назад

      @@Sethioz so now i tried everything with chat gpt and all of that and it works! but when i open the game and that i wanted to use it and i go to memory view it shows me only Question marks and when i want to change a value it shows me only white like when i open the "new chat gpt"

    • @cod564
      @cod564 9 месяцев назад

      @@Sethioz and i tested it in other games it changes in that case the amount of the numbers but so it looks the way you want it but when you close the game and go in it again there is there are the old numbers and some of the games dettect it right away that i testet erliear

    • @Ambient99939
      @Ambient99939 9 месяцев назад

      @@Sethioz Hey there i had a Doubt, so i was trying the car speed hack in cyberpunk 2077, i have the fitgirl version 2.1 of the game. Now i follow the exact same steps which you do, unknown initial value, increased value, decreased value etc. However after finishing the process i am left 10-20 results, and when i change the value of those addresses they keep reverting back. Also it seems that they represent the value shown by the car speedometer, which means they are the display value. Any tips on how to scan differently, as whenever i do the process, i never get the actual value, as you get in your video, so what am i doing wrong?

  • @lappo6953
    @lappo6953 Месяц назад

    says error everytime, at 6:10, can someone help me with the code please?

  • @Astrashastra
    @Astrashastra 5 месяцев назад +2

    Thnx bro, didn't work the first time since I used more than 11 words to replace cheatengine. But got it the next time.

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      Also after the first scan somehow forza detects it. Any advice on how I can fix that?

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      Nvm found the fix.

    • @Sethioz
      @Sethioz  5 месяцев назад

      @@Astrashastra what was the fix? i get same issue on some versions, not sure what is causing it. i'm thinking some setting in CE itself, since i'm using same ce source and settings, but some versions crash after first scan.
      some others have said they get same issue aswell.

    • @Astrashastra
      @Astrashastra 5 месяцев назад +1

      @@Sethioz well all I did was go to the CE settings, then in "scan settings", i selected the "don't store the temporary scanfiles in windows tempdir" option, and just below that there's a option to create a folder to store those files. Before doing this the game crashed after the first scan, but after this it didn't.

    • @Sethioz
      @Sethioz  5 месяцев назад +1

      @@Astrashastra bah .. i totally forgot that and overlooked it, ofc games would scan default temp folder .. i don't get why it was selected / not selected in some of my versions, that's odd. all other settings in my custom CE carried over as CE stores settings in same place, regardless of the naming process. thanks for pointing it out.

  • @unknownbiba
    @unknownbiba 2 месяца назад

    it requires some lua53-64.dll file, where do i get it? followed every step and everything went good

  • @prodarkyt1026
    @prodarkyt1026 6 месяцев назад +2

    Is it possible to download a modified cheat engine so that I don't have to go through all these steps?

  • @rapo7219
    @rapo7219 9 месяцев назад +57

    Do not waste your time on this video, because in the end you will get nothing unless you subscribe to his patreon

    • @Sethioz
      @Sethioz  9 месяцев назад +51

      what are you on about? it's a tutorial how to make it. i only uploaded the already renamed version to patreon and you're whining?
      tell me again, why should i be your slave and do free work? are you going to pay for my living? if not, then stfu you ungrateful squeezy lemon

    • @makstherandomuploader658
      @makstherandomuploader658 9 месяцев назад +8

      @@Sethiozdamn 💀

    • @rakeshdhondiyal5997
      @rakeshdhondiyal5997 8 месяцев назад +7

      ​@@makstherandomuploader658bro was violated

    • @Pack852
      @Pack852 7 месяцев назад +3

      ​@@Sethiozhell na

    • @badrequest2832
      @badrequest2832 7 месяцев назад +2

      @@Sethioz Don't waste your time bud lol

  • @ferzyy_
    @ferzyy_ 9 месяцев назад

    Hello, I always get an error every minute 5:50, please tell me what the solution is, or can you share the code

    • @Sethioz
      @Sethioz  9 месяцев назад

      ??? i literally explained everything about it and code + compiled version are on my patreon.

    • @ferzyy_
      @ferzyy_ 9 месяцев назад +3

      @@Sethioz How do I get the code if your Patreon is locked, hilarious

    • @Sethioz
      @Sethioz  8 месяцев назад +1

      @@ferzyy_ how do i get food if all food is locked in stores?

    • @yungtoga
      @yungtoga 7 месяцев назад

      @@ferzyy_ Seriously don't understand how it's so hard for everyone to get this straight.. I'll send you the lines of code I used to fix my errors. Like he said in other comments it's a simple ChatGPT lookup but still people insist on begging for help pestering him. I'll also copy & paste this to other comments so they'll understand. Don't know if it'll work for you, but here.
      If you get this error: " cesupport.pas(194,115) Error: Identifier not found "ExtractFileNameWithoutExt " - Use this line of code instead: url := getbase + '?cewidth=' + IntToStr(clientwidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;
      If you get this error (for the next) : " frmSaveSnapshotsUnit.pas(261,8) Error: Identifier not found "ExtractFileNameWithoutExt " -
      Use this line of code instead: f := ChangeFileExt(ExtractFileName(savedialog1.FileName), '');
      If you get this error (for the next) : " LuaHandler.pas(14944,23) Error: Identifier not found "ExtractFileNameWithoutExt "
      Use this line of code instead: lua_pushstring(L, ChangeFileExt(ExtractFileName(Lua_ToString(L,1)), ''));
      The Lua errors are told in the video. Simply put a " // " at the start of the 2 lines of code at 954 and 955. -
      This is my current point in the video: 8:20 (so please don't ask for more help if needed after this I don't know myself since I'm not there)

    • @VoRzEYT
      @VoRzEYT 7 месяцев назад +1

      @@Sethioz hahahaha good one mate

  • @Toxic-yt9tp
    @Toxic-yt9tp Месяц назад

    In BF1, Doesn't detect the CE Custom, but i can't find any value and can't use any cheat table. "module not found: bf1.exe"

  • @alxandercruz8906
    @alxandercruz8906 5 месяцев назад +1

    I don't understand English and I need help with the error at minute 5:57

    • @Sethioz
      @Sethioz  5 месяцев назад +1

      don't get into computer stuff if you don't understand english. computers run on english, if you want to learn computer science, learn english first.

    • @edzbigornia7370
      @edzbigornia7370 4 месяца назад

      @@Sethioz would still appreciate the help tho idk how you got your code with chatgpt, been looking for suggestions oh the errors shown at 6:00

    • @charlie_K_05
      @charlie_K_05 3 месяца назад

      @@Sethioz why you being such a prick ot eveyone man

  • @sz4by
    @sz4by 2 месяца назад +1

    Would this work as a game that uses battleye anticheat?

    • @Sethioz
      @Sethioz  2 месяца назад

      probably, why don't you just test? pubg uses battleye and it's free2play, but remember that battleye is spyware and it sniffs your hardware IDs and other personal info, so you might wanna use a different PC for that or try installing it in virtual machine, but not sure if you can run games in vm. it means that if you get banned, then you might also get banned from all other games that use battleye, but for sure you won't be able to make new account on same pc without changing HWID's and such. back in the day i used sandboxie and it bypassed battleye's checks

    • @sz4by
      @sz4by 2 месяца назад

      @@Sethioz And do you know a method that still avoids battleye and allows me to put a dll in the game without being banned?

  • @Sigma-n4h9z
    @Sigma-n4h9z 2 месяца назад

    Bro, I can't find the exe cheat engine edited path, I'm already gone to lib folder and nth, where's the exe files?

    • @Sethioz
      @Sethioz  2 месяца назад

      are you talking about source? it doesn't have exe files ... it's a SOURCE code, not a ready program. did you even watch the video?

  • @SkyFlick2024-pr3ts
    @SkyFlick2024-pr3ts 7 месяцев назад +1

    After using the

    • @SkyFlick2024-pr3ts
      @SkyFlick2024-pr3ts 7 месяцев назад

      nvm fixe was like

    • @Sethioz
      @Sethioz  7 месяцев назад +3

      @@SkyFlick2024-pr3ts quite sure i mentioned this on video. always replace with same amount of characters or you risk breaking the program

    • @SkyFlick2024-pr3ts
      @SkyFlick2024-pr3ts 7 месяцев назад

      @@Sethioz Im looking to cheat on a very old game purely for my own pleasure on a private server. Games called Last Chaos. Issue is even with a modified cheat engine, if I use speed hack, it

    • @SkyFlick2024-pr3ts
      @SkyFlick2024-pr3ts 7 месяцев назад

      @@Sethioz While Im at it I dont want to just take info, you prob already know but it could make a good video if not done already: Disable driver signature, restart pc from settings, troubleshooting, start up options... 7) disable driver... blablbalbla and loading a driver so its kernal cheat engine... (after placing driver files in CE folder... ANyways, the probability you already know that is pretty higgh but it could make an interesting video. Thanks again for your content

  • @А.КАК.КАКАТЬ
    @А.КАК.КАКАТЬ 7 месяцев назад +2

    Sethioz, mine didn't work. Its crashing.
    Specially for you if u didnt understand.
    I launch my modified Cheat Engine, and it doesn't launch. Like NOPDE Engine.

    • @Sethioz
      @Sethioz  7 месяцев назад +1

      congrats, you don't know how to follow a tutorial. give up, delete your computer.

    • @А.КАК.КАКАТЬ
      @А.КАК.КАКАТЬ 7 месяцев назад

      @@Sethioz i followed bro

    • @badrequest2832
      @badrequest2832 7 месяцев назад

      @@Sethioz Lol Anyway, do you know if Forza's Anti cheat detects terminals? Or anyone who's tested.

    • @madzohan
      @madzohan 3 месяца назад

      если какать не шаришь то и тут не получится xD все работает, только что сделал, ключевая штука hexeditor

  • @vrapiid2026
    @vrapiid2026 22 дня назад

    Bro crashing out 😭😭😂 this dude funny ash

  • @c3nt3k
    @c3nt3k 2 месяца назад

    yo dude, i already had a custom engine, but game crashes while scanning vor value. Any fix or advice?

    • @Sethioz
      @Sethioz  Месяц назад

      i've already explained this and "fix" is on patreon

  • @kawaiitsumi677
    @kawaiitsumi677 27 дней назад

    is there a website where we can download it? i hate editing codes

    • @Sethioz
      @Sethioz  25 дней назад

      i hate freeloaders

  • @dreela73
    @dreela73 4 месяца назад

    please help for change code in video 6:04 thx

  • @MsLuie
    @MsLuie 6 месяцев назад

    I know myself I’ve done every, like EVERY step of this video correct, and it says “this app cannot drive on your pc” have any ideas?

    • @Sethioz
      @Sethioz  6 месяцев назад

      no idea what apps and driving you on about, but apperently you missed something, cuz it works for me and many others.

    • @MsLuie
      @MsLuie 6 месяцев назад

      @@Sethioz it’s alright, I found a other way

    • @edvakingnull6629
      @edvakingnull6629 5 месяцев назад

      @@MsLuie How did you solve it? I have the same problem

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      @@edvakingnull6629 you probably used more than 11 characters while replacing the name "cheatengine", do it again but keep the new name of the same character size.

    • @edvakingnull6629
      @edvakingnull6629 5 месяцев назад +1

      @@Astrashastra Thank you bro that solved it

  • @mr.dragos2249
    @mr.dragos2249 6 месяцев назад +1

    Hello Sethioz, i think your tutorial worked, but not for me. I did everything.. Can you send me the spoofed version of the cheat engine with link? Please respond

  • @mxrcysolutions
    @mxrcysolutions 2 месяца назад

    it does say driver error, you are missing the driver, try reinstalling etc

    • @Sethioz
      @Sethioz  2 месяца назад

      "install" is automated process designed for idiots who don't know how to manually place files and make registry entries, you don't need to "install" anything if you know where and how to place files and registry entries.
      install often includes garbage you don't need, like nvidia bloats with their garbage and fills your pc with shit you don't need (background services, telemetry ..etc). this is why i rarely install things, i don't want useless trash in my pc that just eats space.
      like ubiSH!T client, all they do is UPDATE UPDATE UPDATE ... what is there to fucking update? 200mb update .. FOR WHAT??? it's a fucking client that launches games, there is NOTHING to update!
      ce is no better, they stick all this trash and garbage in it that is not needed. i'm not installing it on my main pc, i only do it via VM as i'm not a sheep like most people, i don't want this nonsense trash in my pc.

    • @mxrcysolutions
      @mxrcysolutions 2 месяца назад

      @@Sethioz Fivem still detects it if u attach the process with all debuggers

    • @Sethioz
      @Sethioz  2 месяца назад

      @@mxrcysolutions never heard of fivem game, but its explained on video. learn to watch videos with sound turned on and learn to watch more then 30 seconds

  • @ELEGANTFOX
    @ELEGANTFOX 9 месяцев назад +1

    i managed to compile the program but it refuses to open, i encountered one extra bug than you

    • @jafaralshammaa
      @jafaralshammaa 9 месяцев назад

      me too.. äpp cant run on your pc,,,
      did u find a solution?

    • @rammahsallom2419
      @rammahsallom2419 8 месяцев назад

      @@jafaralshammaa yeah got it, just do not use XVI instead use HxD hex editor will solve the issue you're facing. cheers

  • @babyfox2917
    @babyfox2917 3 месяца назад

    can have the code that fix the compile error?

  • @beefnoodles9344
    @beefnoodles9344 2 месяца назад

    Yeah, I think forza 5 has this patched, because it crashes when I open FH5, but, really good tutorial !

  • @MsLuie
    @MsLuie 6 месяцев назад

    Where is the description for lazaros??

  • @P1xelPlaytime
    @P1xelPlaytime 4 месяца назад

    Hello Sethioz, The DBK32 driver that we renamed early is not loading. I get the error message.

  • @mainfalsedata
    @mainfalsedata 9 месяцев назад +1

    Can you help me, it wont open on the compiler application thing

  • @TERROr4ek
    @TERROr4ek Месяц назад +1

    yo it gives me the " can't open this software on your pc"

  • @jaybird4410
    @jaybird4410 6 месяцев назад +7

    a bit useless if you don’t provide the line you get from chat gpt, I’m stuck at this point :(

    • @Sethioz
      @Sethioz  5 месяцев назад +5

      not my problem that you're too dumb to use chatgpt

    • @charlie_K_05
      @charlie_K_05 3 месяца назад

      @@Sethioz its not all the same

    • @CheatEngineDBZCtTool
      @CheatEngineDBZCtTool 3 месяца назад

      url := getbase + '?cewidth=' + Inttostr(clientwidth) + '&ceheight=' + Inttostr(clientheight) + '&fn=' + ExtractFileExt(ExtractFileNameWithoutExt(Application.ExeName) + '&counter=' + Inttostr(counter) + Getoptionalstring);

    • @rev_schubert5289
      @rev_schubert5289 3 месяца назад

      just copy pasta the line that you get the error into chatgpt and tell it to fix it.

  • @brothersgta339-jb1ld
    @brothersgta339-jb1ld 6 месяцев назад +1

    Thanks bro it worked😄😄😄

  • @JavaMonster1
    @JavaMonster1 4 месяца назад +1

    Thank you! I did it right the first time. I don't understand the types who write you up for help. you're the best.

    • @Sethioz
      @Sethioz  4 месяца назад

      it's cuz most people don't pay attention to what they're doing, then they start blaming everyone except themselves

  • @floatas2121
    @floatas2121 4 месяца назад +2

    You forgot to mention that rename should be the same lengths or changing with hex editor will corrupt the exe file.

    • @Sethioz
      @Sethioz  4 месяца назад

      quite sure i mentioned it

  • @tiktak3163
    @tiktak3163 2 месяца назад

    if I did this steps can I bypass battleye (gtav) ?

    • @Sethioz
      @Sethioz  Месяц назад +1

      quite sure gta 5 doesn't have battleye. i've used god mode, infinite ammo, flight ..etc. don't touch online money tho, they have server-side check that bans you even if cheater joins session and drops bags of money on you (happened to me and my friend, we both got 30 day ban cuz someone dropped money on us).

  • @donutlink2706
    @donutlink2706 5 месяцев назад

    could u tell how u asked chat gpt because when i ask it gives me diffrent results

    • @Sethioz
      @Sethioz  5 месяцев назад

      ... honestly this generation of people makes me sick. you have extremely powerful tool in your disposal and you don't know how to even use it.
      chatgpt is easy, you give it as much info as you possibly can and tell it what your goal is.
      in this case, tell it that you are compiling ce from source using lazarus, tell it which options you're using and paste the error you're getting. it's really that simple.

    • @mrfifasa2960
      @mrfifasa2960 5 месяцев назад +3

      @@Sethioz Oh my god the cringe is immense...
      It's like you're trying to act like some movie character & like you know "Cool stuff" but man...
      🤣🤣🤣🤣🤣🤣

    • @edzbigornia7370
      @edzbigornia7370 4 месяца назад +3

      @@Sethioz jeez man he just asked a question lmfaoo

  • @scythe2686
    @scythe2686 8 месяцев назад

    symbol lookup error,what can i do if memory view does not even charge,processor is not able to pick one,what's the solution for that?

  • @caseylynch8705
    @caseylynch8705 3 месяца назад

    it still says chea engine 7.5 when I open it. and I followed all the steps

    • @Sethioz
      @Sethioz  3 месяца назад

      obviously you didn't follow all the steps. what is it with ppl and their itching? are you unable to watch the whole video with sound on? if answer is yes, then you have some loose or missing screws in your brain. solution is: get screws

  • @vavnia2002
    @vavnia2002 8 месяцев назад

    After i used XVI32 the "script" didnt open it shows "This app cant executed on this Pc" does someone know why?

    • @Sethioz
      @Sethioz  8 месяцев назад

      obviously because you don't know how to follow the steps shown on the video

    • @vavnia2002
      @vavnia2002 8 месяцев назад +1

      @@Sethioz ok if u say so

    • @rammahsallom2419
      @rammahsallom2419 8 месяцев назад

      yeah this issue is happening after using the Hex editor, and I am still trying to fix it apparently the Hex editor is messing up some checksums or digital signatures after you save it since I have triple-checked what he did exactly and the way he is using the editor still haven't found a solution, let me know if you figured something out
      and it is not because you don't know how to follow the steps in the video

    • @rammahsallom2419
      @rammahsallom2419 8 месяцев назад

      yeah got it, just do not use XVI instead use HxD hex editor will solve the issue you're facing. cheers

    • @ozapell7393
      @ozapell7393 8 месяцев назад

      same thing, did you solve it?

  • @Dorrit01
    @Dorrit01 9 месяцев назад

    now can you show how to scan the memory of easy anticheat and battleye games cause this method wont scan them.

    • @Sethioz
      @Sethioz  9 месяцев назад +3

      it's permission issue, you need to run CE in kernel mode. maybe i make a tutorial at some point, this was just a simple "fix" to bypass those annoying games that instantly close when you open any tool.

    • @officialyashvirgaming
      @officialyashvirgaming 8 месяцев назад

      @@Sethioz how to dump for Horizon forbidden west

  • @nomnammakmak978
    @nomnammakmak978 15 дней назад

    Thank you for ur code

  • @ruttunen00
    @ruttunen00 3 месяца назад

    It worked for me, but the only problem is that it doesn't find any value in the game im trying to play

    • @Sethioz
      @Sethioz  3 месяца назад

      check what anti-cheat game uses, also some games might use "dummy" .exe. i don't remember from head, but one game had .dll running along side which held all the memory. some games also use anti-cheat that blocks memory, you need to disable it or use some kernel tools to gain access to it.

  • @thehardmethod
    @thehardmethod 4 месяца назад

    Help us create cheats for age of mythology retold

  • @ChubbyPuffin35
    @ChubbyPuffin35 5 месяцев назад

    where is the code4 from chat gpt? it got cut off in ur video

    • @Sethioz
      @Sethioz  5 месяцев назад

      it's a tutorial, you follow it, it means you use chatgpt to solve the errors, if you want copy pasted stuff, then it's on my patreon.

  • @swoxiiCS
    @swoxiiCS 5 месяцев назад

    After using the hex editor as you did exactly I get the error this app can’t run on your pc

    • @Sethioz
      @Sethioz  5 месяцев назад

      apperently you did not or maybe you're on win11 and it detects some change in program, win11 is designed to prevent people from using modified software. stay away from win11.
      however if you're on 10, then obviously you did something wrong.
      talk yourself thru what you did and did not do, even i make dumb mistakes sometimes. don't assume that something is correct, start from scratch and re-check everything.
      it shouldn't be win11 issue, but it's possibility.

    • @SirLordMonke
      @SirLordMonke 5 месяцев назад

      the bytes for the new name need to be the exact same in length and have the spaces in the exact same place to. basically when replacing the "cheat engine" name you need something 5 chars long for the first word then a space then another word 6 chars long. for example: "cheat engine" - "cheez engine"

  • @ozapell7393
    @ozapell7393 8 месяцев назад

    this app can't run on your pc, how do I fix this? this happened after replacing xvi32 or hxd editor

    • @Sethioz
      @Sethioz  8 месяцев назад

      you fix it by following the video ... clearly you did something wrong

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      cheatengine = 11 characters, while replacing "cheatengine" in hex editor, add whatever name you're adding of the same size.

  • @MCbabel_
    @MCbabel_ 2 месяца назад

    Very good video and very understandable, but unfortunately although I have done all the steps as in the video, this error occurs as soon as I try to start the modified program:
    This app cannot be run on the PC
    Please contact the software publisher to find a suitable version for your PC.
    Can anyone tell me how to fix the problem?

    • @Sethioz
      @Sethioz  2 месяца назад +1

      uninstall spyware named win 11

    • @MCbabel_
      @MCbabel_ 2 месяца назад

      @@Sethioz Good idea, but unfortunately I can't do it because of my job. Otherwise I would have switched to Ubuntu a long time ago. But I now know what the problem was, I used the program xvi32 to give the program a different name than the original name, but unfortunately my new name was longer than the original cheat engine name, so the program didn't work anymore.

  • @zcallmeapple-3001
    @zcallmeapple-3001 6 месяцев назад

    The game does not not crash when you open CE directly, but as soon as you want to check for a value it closes...

    • @Sethioz
      @Sethioz  6 месяцев назад

      try different version of ce source. i started having same issue and i have no idea why. it worked fine at start, but then it does same. my old version still works fine.
      i suspect it might be some setting in lazarus. find and delete all lazarus settings / configs and try again with clean CE source.
      i don't have motivation to test it further at this point. it's probably something simple.
      i googled for it and someone said something about foundlist, not sure if they refer to source code files or phrase in source.

    • @johnwilliam3236
      @johnwilliam3236 2 месяца назад

      @@Sethioz what version of CE was your old one

  • @Hytarshadgod
    @Hytarshadgod 6 месяцев назад +1

    Bro Erorr line How to Code

  • @reddragongamerschannel8515
    @reddragongamerschannel8515 6 месяцев назад +2

    didin't work because im not an absolute computer nerd fr

    • @ruttunen00
      @ruttunen00 3 месяца назад

      It doesn't require much anything to follow a simple tutorial made by someone smart

  • @midouahmedd6638
    @midouahmedd6638 3 месяца назад

    pls how we can speed hack dofus i can
    t

  • @q7b663
    @q7b663 7 месяцев назад

    do you know if this works on be or other kernel acs?

  • @SloppyProductionsNZ
    @SloppyProductionsNZ 3 месяца назад

    Can you just share a few renamed compiled cheatengines?

    • @Sethioz
      @Sethioz  3 месяца назад

      already have, they're on my patreon

  • @dabi814
    @dabi814 2 месяца назад

    Can i buy ur version ?

  • @wposucks2-kn4el
    @wposucks2-kn4el 5 месяцев назад

    at 6;03 can someone tell me what he did there?

  • @SisandaSibiya-ur1cy
    @SisandaSibiya-ur1cy 9 месяцев назад

    Will I be able to run custom visual mods with the anti-cheat?

  • @SeiGion
    @SeiGion 7 месяцев назад +1

    It's not Bypass, It's Undetected CE

    • @Sethioz
      @Sethioz  7 месяцев назад

      it's same thing .. it bypasses the anti damper protection by going "under the radar"

    • @SeiGion
      @SeiGion 7 месяцев назад +2

      @@Sethioz no, bypass mean "kill the anti" not hiding

    • @bokajunior7579
      @bokajunior7579 3 месяца назад

      Now, "bypass" and "undetected" are somewhat related terms but not the same.
      In normal circumstances to bypass a system, restriction or security measure. Something that has been instead avoided or overwritten.
      When something has remained ignored for a length of time without being found. It means that the action has successfully taken place without monitored or detected by any monitoring/detection system.
      Some bypassing turns into being undetected - i.e. a person might bypass something, but they successfully hide the fact that they are doing so (until it is too late, and say for example there are indications afterwards); not all bypassing leads to being undetected - someone does X knowing you will know he did X or because what he leaves shows he has been there).

  • @sika1450
    @sika1450 5 месяцев назад +1

    after the first scan, the game crashed.

    • @Sethioz
      @Sethioz  5 месяцев назад

      itchy itchy itchtard learn to read info instead of whining like a bag

    • @mrfifasa2960
      @mrfifasa2960 5 месяцев назад +4

      @@Sethioz What a d1ck

  • @LukaVarshanidze-m4t
    @LukaVarshanidze-m4t 9 месяцев назад +1

    it says cant find a version for your pc, contact software publshier in the end, is there anything i could do?

    • @User92-wx8pn
      @User92-wx8pn 9 месяцев назад +1

      Probably you do something wrong.

  • @xoshawty
    @xoshawty 7 месяцев назад +1

    Appreciate the video. After scanning Forza 5 still crashes, Any help?

    • @Sethioz
      @Sethioz  7 месяцев назад +1

      after scanning? that sounds more like issue with windows or something else.
      i did notice that veh debugger isn't working on my custom version, not sure what the issue is, but fh5 has debug protection anyways. maybe one day if i have motivation i might make another video regarding debugger, but i doubt. it took me close to 5 years to finally get this video done ..

    • @xoshawty
      @xoshawty 7 месяцев назад +1

      ​@@Sethioz Yeah, I can successfully perform scans in Cheat Engine and see results, but shortly after the scan completes, Forza Horizon 5 crashes. Thanks to you, Just being able to have Cheat Engine open is a step in the right direction. I'm going to download your version and see if my game still crashes.

    • @duracell_99
      @duracell_99 6 месяцев назад +1

      @@xoshawty same here. any success ?

    • @xoshawty
      @xoshawty 6 месяцев назад

      @@duracell_99 In Cheat Engine settings, Navigate to the "Scan Settings' tab, Check the box where it says "Don't store the temporary files in the windows tempdir', Choose another place to store them, I just created a new folder. You'll be able to scan without crashing.

    • @Astrashastra
      @Astrashastra 5 месяцев назад

      @@xoshawty idk if this will work or not for you, but it did for me so, go to the CE settings, then "scan settings" in that select the option "don't store the temporary scanfiles in windows tempdir" and below that there's a option to create a folder to store those files. Before doing this, forza crashed after the first scan but after it didn't.

  • @trainvscarultimate5444
    @trainvscarultimate5444 7 месяцев назад

    does this work on console

    • @Sethioz
      @Sethioz  7 месяцев назад

      lol...

  • @4lex_4nder
    @4lex_4nder 9 месяцев назад

    Can I use this for wheelspins??

  • @sjnhwk4681
    @sjnhwk4681 9 месяцев назад

    does this work for EAC?

    • @Sethioz
      @Sethioz  9 месяцев назад

      ???? EAC doesn't close in presence of cheat engine or other tools.

    • @officialyashvirgaming
      @officialyashvirgaming 8 месяцев назад

      @@Sethioz Sir, Offline game like Horizon Forbidden West
      how to do that make video .

    • @Triangle1234
      @Triangle1234 8 месяцев назад

      @@Sethioz yes it does

  • @GRlNDOR
    @GRlNDOR 7 месяцев назад

    Ok, i do all, my Cheat engine is working, thanks. BUT ! when i use " Find out what accesses this adress (F5) " every game is crashing because they detect something ... idk how to bypass this. Maybe a tutorial for this ? Thanks for videos.

    • @Sethioz
      @Sethioz  7 месяцев назад

      that's cuz debugger is much more intrusive and some games can detect when you attach a debugger, that's completely different. it isn't detecting cheat engine, it detects presence of a debugger.
      CE has kernel level debugger, which might work, but you have to mess around in BIOS and you probably end up crashing your PC multiple times before you get it right.

    • @littlebrainyt5251
      @littlebrainyt5251 5 месяцев назад

      use dse patcher

  • @MsLuie
    @MsLuie 6 месяцев назад +1

    Great video man. So doing this makes it a higher chance to be able to hack in games?

  • @KfzvLmao
    @KfzvLmao Месяц назад

    I feel like dude just changed the drivers

  • @zoidberg945
    @zoidberg945 7 месяцев назад

    i am having this error at start. 'unit' expected but 'mmmunit' found. can't go past that. chatgpt says to add stuff but doesn't work.
    Edit: ok, i just removed mmm and it got beyond the first line. I saw what was in your first line of code and there was no mmm. chatgpt sometime make situation unnecessarily complicated.
    Edit: Ok, it is finally done. I made this with a twist. replaced SethX with Methx everywhere and added a pic meth in programme image. I changed name in case it is added to blacklisted program name.
    Also you can load default image in program image window, it gives lazarus program image .
    Thanks a lot!! for the this tutorial.

  • @Preestar1
    @Preestar1 Месяц назад

    i can´t open it now done exactly what u did

  • @JorgeRuiz-w1j
    @JorgeRuiz-w1j 6 месяцев назад

    bro it still crashed for me

  • @AugustoV8Cesar
    @AugustoV8Cesar 3 месяца назад +1

    I dont know how to make those things, it would be a pleasure to just download that ''stealth engine'' from you 😒😒

    • @Sethioz
      @Sethioz  3 месяца назад

      look at description and pinned comment ^^

    • @AugustoV8Cesar
      @AugustoV8Cesar 3 месяца назад

      @@Sethioz expensive asf!

  • @djcoloma8727
    @djcoloma8727 5 месяцев назад

    Thanks a lot

  • @D.GH21
    @D.GH21 8 месяцев назад

    if you can try this out for 3on3 freestyle and see your ce bypass that i'll gladly become a patreon

  • @tuaneygul5693
    @tuaneygul5693 9 месяцев назад

    bratan can u show chatgpt codes cause i got same problem.

    • @Sethioz
      @Sethioz  9 месяцев назад

      if you're too lazy to use chatgpt yourself, everything is available on my patreon

    • @rammahsallom2419
      @rammahsallom2419 8 месяцев назад

      Cesupport line 194 Fix
      url := getbase + '?cewidth=' + IntToStr(ClientWidth) + '&ceheight=' + IntToStr(ClientHeight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;
      frmSaveSnapshotsUnit line 261 fix
      f := ChangeFileExt(ExtractFileName(savedialog1.Filename), '');
      LuaVirtualStringTree line 955 Fix comment the $else line and the luaclass line
      LuaHandler line 14944 fix
      lua_pushstring(L, ExtractFileName(Lua_ToString(L, 1)));

    • @highslump
      @highslump 8 месяцев назад

      Don’t give this dirty bastard money

    • @elijah9568
      @elijah9568 8 месяцев назад

      ​@@Sethiozyoure such a useless prick lmao

    • @elijah9568
      @elijah9568 8 месяцев назад

      ​@@Sethiozliterally deleting every comment w the code so you can try and pawn more patreon subs, fucking pathetic

  • @OPCertainty
    @OPCertainty 6 месяцев назад +2

    I rarely dislike vidoes, maybe once every 500 videos or so, but this one managed to get it. This is not a critique on you, just this video, it's not done well and I think you're aware of it, the guide is not followable just telling us to ChatGPT it, just link the folder so we can avoid the hassle entirely, did you ever wonder why cheat engine comes basically complete and doesn't tell you to make the code yourself? I'm sure if I spent an hour trying I could get it working but quite frankly its not worth and I have better things to do with my time. Just maybe pull down this video and revise it, you and I know it needs to be redone properly, please do better.

    • @Sethioz
      @Sethioz  6 месяцев назад

      only people who have problems following this step by step tutorial, are people who have no common sense.
      congrats, you are one of them. go get brain. chatGPT is able to fix almost all programmings errors, but you're too dumb to use it.
      this is what happens when technology evolves, while humans devolve. you need a new brain, one that has IQ over 50

    • @mrfifasa2960
      @mrfifasa2960 5 месяцев назад +5

      Lol yeah.. Until I saw his replies, I think he has real life problems or Bipolar maybe ?
      Ehh.. I already compiled CE my own way but just wanted to see different methods..'
      Edit: Yeaaah.. I think he has problems.. Good luck with your life man..

  • @JusX
    @JusX 9 месяцев назад

    seems like the newest update detected this.

  • @ThuThu-xc5gm
    @ThuThu-xc5gm 4 месяца назад +1

    Thanks you bro that really help me😄😄

  • @devilhunter8752
    @devilhunter8752 6 месяцев назад +4

    So you know that there is errors, and you don't even post the code. when you clearly know that it's not fully shown in the video Why bro? Some of us here following the tutorial, trying to learn and you are pushing us to go to subscribe to your patron. So we can get the final version from that. What a shame.

    • @OPCertainty
      @OPCertainty 6 месяцев назад +2

      Worst part is I'm fairly sure he could've just linked a google drive link to the folder he used without having to deal with changing all the code and using lazarus. If you're going to make a step-by-step guide rather than just giving the solution, at least make it followable.

    • @devilhunter8752
      @devilhunter8752 6 месяцев назад +2

      @@OPCertainty exactly bro and if you go down there and the comments you will see him replying to someone said that he if you couldn't follow tutorial delete your PC, like come on man you don't even show the code

    • @Sethioz
      @Sethioz  5 месяцев назад

      @@devilhunter8752 i showed you how to optain the code, if you're unabel to follow this, you don't deserve it. use your brain instead of whining. i'm sick of dumb people who roll their eyes and want EVERYTHING for FREE handed to them on silver platter. how about you become my patron and copy the code from there? why should i be your slave and do free work? i'm sick of people like you .. either pay me or do it yourself.

    • @Sethioz
      @Sethioz  5 месяцев назад

      @@OPCertainty do it yourself then. everyone is big with their mouth, but i dont see you making any tutorial you nag.

    • @devilhunter8752
      @devilhunter8752 5 месяцев назад +1

      @@Sethioz Are you **** kidding me man you didn't show the code Don't play dumb. you simply said you asked GBT to edit it for you, but you didn't show us the actual code. You keep talking to everyone like they are stupider than you or anything. like that when you yourself asked AI to help you modify the **** code. If you're gonna keep talking to people like that, **** you.

  • @joelepoel
    @joelepoel 4 месяца назад +1

    Game still detected it. what the fuck

    • @ruttunen00
      @ruttunen00 3 месяца назад

      Then you did it wrong

    • @joelepoel
      @joelepoel 3 месяца назад

      @@ruttunen00 I didnt, I fixed it though. dont remember how

  • @muhammedabdullahzaman4951
    @muhammedabdullahzaman4951 7 месяцев назад

    how to find on chat gpt

    • @Sethioz
      @Sethioz  7 месяцев назад

      ... FACEPALM 1000x. ppl just getting dumber by day. give them A.I. but they're too dumb to use it ...

  • @duracell_99
    @duracell_99 6 месяцев назад

    after scan fh5 is crashing

    • @Sethioz
      @Sethioz  6 месяцев назад

      i think CE's source has been messed up, you should ask on CE forum if DarkByte made any changes to source since i made this video.
      i had same issue few days ago, i complied a new version and game crashed 10 seconds after i made first scan.
      can't bother with it atm, but quite sure it's because he has changed something in source code. either ask on CE forums or try older source. like 7.4 or even earlier.

  • @kawaiitsumi677
    @kawaiitsumi677 27 дней назад

    pls make a finish product, so we need not to edit

    • @Sethioz
      @Sethioz  25 дней назад +1

      i'm not your slave. do it yourself

  • @zeydsaym5564
    @zeydsaym5564 8 месяцев назад +2

    Let me know if u can bypass EAC, i need help about that, i can sub ur patreon acc

  • @robertcristache1800
    @robertcristache1800 3 месяца назад

    Crazy how Roblox still detects it lmao

  • @VoRzEYT
    @VoRzEYT 7 месяцев назад +1

    hello, could you explain how you asked the AI chatgpt do it for you? i am too lazy to do it myself and i am new to this meaning i dont know any of this HAHAHA

  • @Anonymous-lb3fn
    @Anonymous-lb3fn 4 месяца назад

    Hey man love your videos! can you please please share the file in a google drive? I will be a patreon if you share it.

    • @Sethioz
      @Sethioz  4 месяца назад

      i don't use google drive and you're a liar, that "file" is already on patreon, if you was gonna support me, you'd support me and download the "file" via patreon. i'm sick of you freeloaders, all you do is DEMAND. what about me? why should i give my work for free?
      how about you give me free house, free food, free internet, free computer upgrades? how about that?

  • @aljnat
    @aljnat 9 месяцев назад +1

    So at 6:13... he doesn't show the fix... so the whole tutorial is useless...? Nice.

    • @aljnat
      @aljnat 9 месяцев назад

      All. Try this: url := getbase + '?cewidth=' + IntToStr(clientwidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ExtractFileName(ChangeFileExt(Application.ExeName, '')) + '&counter=' + IntToStr(counter) + getoptionalstring; browser.Navigate(url);

    • @Sethioz
      @Sethioz  9 месяцев назад +1

      learn to use chatgpt moran or you too dumb for copy pasting? you literally copy old line into chatgpt and ask it to fix it and then copy and paste the one chatgpt gives.
      WOW sounds like rocket science, i'm sure even Elon couldn't do it! it's so hard, just give up on computers.

    • @aljnat
      @aljnat 9 месяцев назад +1

      @@Sethioz classy. Watch your video back. You can’t see the full code.

    • @aljnat
      @aljnat 9 месяцев назад +1

      Don’t get salty. I posted the code for you. You’re welcome my friend

    • @mustafapro1718
      @mustafapro1718 9 месяцев назад +1

      Chatgpt not always right and tou didnt show the full code​@@Sethioz

  • @abenex2175
    @abenex2175 8 месяцев назад

    chatgpt cant fix it

    • @Sethioz
      @Sethioz  8 месяцев назад

      fix what? you gonna have to be a lot more specific than "it". there are lot of things on this video

    • @abenex2175
      @abenex2175 8 месяцев назад +4

      @@Sethioz the only time you referred to chatgpt was when you were fixing the code snippets

    • @officialyashvirgaming
      @officialyashvirgaming 8 месяцев назад

      @@abenex2175 Sir, Offline game like Horizon Forbidden West
      how to do that make video .

    • @yungtoga
      @yungtoga 7 месяцев назад

      Seriously don't understand how it's so hard for everyone to get this straight.. I'll send you the lines of code I used to fix my errors. Like he said in other comments it's a simple ChatGPT lookup but still people insist on begging for help pestering him. I'll also copy & paste this to other comments so they'll understand. Don't know if it'll work for you, but here.
      If you get this error: " cesupport.pas(194,115) Error: Identifier not found "ExtractFileNameWithoutExt " - Use this line of code instead: url := getbase + '?cewidth=' + IntToStr(clientwidth) + '&ceheight=' + IntToStr(clientheight) + '&fn=' + ChangeFileExt(ExtractFileName(Application.ExeName), '') + '&counter=' + IntToStr(counter) + getoptionalstring;
      If you get this error (for the next) : " frmSaveSnapshotsUnit.pas(261,8) Error: Identifier not found "ExtractFileNameWithoutExt " -
      Use this line of code instead: f := ChangeFileExt(ExtractFileName(savedialog1.FileName), '');
      If you get this error (for the next) : " LuaHandler.pas(14944,23) Error: Identifier not found "ExtractFileNameWithoutExt "
      Use this line of code instead: lua_pushstring(L, ChangeFileExt(ExtractFileName(Lua_ToString(L,1)), ''));
      The Lua errors are told in the video. Simply put a " // " at the start of the 2 lines of code at 954 and 955. -
      This is my current point in the video: 8:20 (so please don't ask for more help if needed after this I don't know myself since I'm not there)

    • @STCMFILMZ
      @STCMFILMZ 7 месяцев назад

      @@abenex2175 if you did it right up until there you shouldnt have got the error cause ididnt