Search found 19 matches

by back_slash
15 Dec 2022 08:44
Forum: DOS Batch Forum
Topic: Increasing text size in a batch file
Replies: 7
Views: 12355

Re: Increasing text size in a batch file

There is only one problem. How do I run code that I have already made with this preset? for example, i tried to do @echo off reg import tinytonCMD.reg cd Kernel start "game.bat" exit That doesn't work for some reason, it will start the game without the preset in the registry file. It works fine with...
by back_slash
15 Dec 2022 08:14
Forum: DOS Batch Forum
Topic: Increasing text size in a batch file
Replies: 7
Views: 12355

Re: Increasing text size in a batch file

thx ill try it
by back_slash
14 Dec 2022 12:27
Forum: DOS Batch Forum
Topic: Increasing text size in a batch file
Replies: 7
Views: 12355

Increasing text size in a batch file

Hi I'm making a program in batch and I need the text to be bigger without altering anything at the properties menu.
It doesn't matter if it's an external command or pure batch, anything works.
Thanks
by back_slash
07 Dec 2022 21:08
Forum: DOS Batch Forum
Topic: This is really stupid but
Replies: 1
Views: 6433

This is really stupid but

Is it possible to send a notification to a totally different computer in some way with batch?
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
by back_slash
07 Dec 2022 19:40
Forum: DOS Batch Forum
Topic: This is really stupid but
Replies: 1
Views: 6300

This is really stupid but

Is it possible to send a notification to a totally different computer in some way with batch?
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
by back_slash
07 Dec 2022 19:35
Forum: DOS Batch Forum
Topic: Maze game questions
Replies: 3
Views: 7878

Re: Maze game questions

thanks I was able to make it :D
by back_slash
03 Dec 2022 13:22
Forum: DOS Batch Forum
Topic: Maze game questions
Replies: 3
Views: 7878

Maze game questions

Hello. I've got a maze game that I'm trying to make. I want it to have collision, an array of 10 maze "rooms" that the file can procedurally generate, and a monster that moves by itself. I've got the prodecurally generated part down (probably), and collision will take a long time but it's possible, ...
by back_slash
06 Sep 2021 06:14
Forum: DOS Batch Forum
Topic: How to return ascii value in 'bg _Kbd'
Replies: 9
Views: 6590

Re: How to return ascii value in 'bg _Kbd'

@aGerman & @penpen

Ah, thank you for explaining this to me.
by back_slash
05 Sep 2021 11:03
Forum: DOS Batch Forum
Topic: How to return ascii value in 'bg _Kbd'
Replies: 9
Views: 6590

Re: How to return ascii value in 'bg _Kbd'

@aGerman I have. On this post (https://www.dostips.com/forum/viewtopic.php?t=4094) it states there is an option called "_Kbd" to wait until a key was pressed. @penpen The reason I'm using _Kbd is to wait 3 seconds to give you time to press a key, The issue with Kbd is you have to press a key instead...
by back_slash
05 Sep 2021 06:38
Forum: DOS Batch Forum
Topic: How to return ascii value in 'bg _Kbd'
Replies: 9
Views: 6590

Re: How to return ascii value in 'bg _Kbd'

@T3RRY Well, I have tried this code which stores the ERRORLEVEL in a different variable, but it still returns 0. @echo off echo Press any key. bg.exe _Kbd set key=%ERRORLEVEL% timeout 3 /nobreak >nul echo %key% pause exit I've also tried 'bg sleep 3000' instead of timeout and it still doesn't work A...
by back_slash
04 Sep 2021 17:49
Forum: DOS Batch Forum
Topic: How to make a custom mouse cursor in batch?
Replies: 16
Views: 10063

Re: How to make a custom mouse cursor in batch?

@aGerman

Wow!! Thank you so much, you saved me alot of time!
by back_slash
04 Sep 2021 17:47
Forum: DOS Batch Forum
Topic: How to return ascii value in 'bg _Kbd'
Replies: 9
Views: 6590

How to return ascii value in 'bg _Kbd'

I'm using BG.EXE 2.5 by @carlos on Windows 10
My code is

Code: Select all

@echo off
echo Press any key.
bg.exe _Kbd
timeout 3 /nobreak >nul
echo %ERRORLEVEL%
pause
exit
But when I press a key, it doesn't return a value in ERRORLEVEL, instead 0.
How do I fix this?
by back_slash
28 Aug 2021 09:20
Forum: DOS Batch Forum
Topic: How to make a custom mouse cursor in batch?
Replies: 16
Views: 10063

Re: How to make a custom mouse cursor in batch?

@ShadowThief


Well, are there any tricks in the WIN32 api or C++ for this?
Again, I can't code in C++ or use the Win32 Api.
by back_slash
21 Aug 2021 13:15
Forum: DOS Batch Forum
Topic: How to make a custom mouse cursor in batch?
Replies: 16
Views: 10063

Re: How to make a custom mouse cursor in batch?

Well, I'm dumb as a rock when it comes to Win32 API and programming
Are there any currently published external commands to accomplish this?
by back_slash
21 Aug 2021 11:44
Forum: DOS Batch Forum
Topic: How to make a custom mouse cursor in batch?
Replies: 16
Views: 10063

Re: How to make a custom mouse cursor in batch?

@aGerman


I mean a mouse cursor as shown in this clip:
https://streamable.com/mqhntk
Do you know how I can get this? :?:
If so, it would be very much appreciated! :D