BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
Color Config [Add On Script] Empty5/16/2024, 8:25 am by Bully@WiiPlaza

» Bully Made It Into a BIG Video 400K Views
Color Config [Add On Script] Empty4/7/2024, 6:58 am by Bully@WiiPlaza

» Wii Play Tanks
Color Config [Add On Script] Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
Color Config [Add On Script] Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
Color Config [Add On Script] Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
Color Config [Add On Script] Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
Color Config [Add On Script] Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
Color Config [Add On Script] Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
Color Config [Add On Script] Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
Color Config [Add On Script] Empty2/21/2024, 8:52 am by naxil

Search
 
 

Display results as :
 


Rechercher Advanced Search

May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

Color Config [Add On Script]

2 posters

Go down  Message [Page 1 of 1]

1Color Config [Add On Script] Empty Color Config [Add On Script] 4/18/2015, 10:01 pm

Modder~kid@BWH

Modder~kid@BWH
Mod & Writer

Adding a "color config" to batch scripts.

(i made this tut, cuz i was bord)  but its still a useful sript

say you wana change the color of a Batch file, with out edditing the file.
All you need to do is to add a few extra commands, or scripts, to the
batch file, once you do so, you well no longer need to keep modifing the
file.  

the three things you need are three batch files
1, normal batchfile "the one you want to change"
2. color menu
3, color save

a normal batch file with color text would have just the plane "color" command.

--example
Code:

@echo off
color a
echo Text Here
pause

as you can see i put "color a" since i wanted green text,  now ima show you
how to change the color code with a save file.

--example
Code:

@echo off
call "C:\ColorSave.cmd"
%color%
cls
echo Text Here
pause

as you can see, we replaced the normal "color" command with a "%color%" and have also
added the "call" command.  What i did was, i made a nother cmd fiile that has a nother color
command in it

--example
Code:

color 1

all it has is a "color" code, you see, when we "call" the color file, it well read that it has
"color 1" in it, because of this, it well replace "%color%" with color 1,  now to get this
"color 1" or any color realy, in the color save, we need to make a color menu

--example
Code:

@echo off
:home
echo 1 = blue
echo 2 = green
echo 3 = white
set /p Option=
if %Option% == 1 echo color 1 > C:\ColorSave.cmd
if %Option% == 2 echo color a > C:\ColorSave.cmd
if %Option% == 3 echo color 7 > C:\ColorSave.cmd
goto home

now, as you can see, we have three colors in the menu, we have "blue, green, and white"
also, as you can see, once we press 1, 2, or 3, it puts or "echos" the color code in to the "ColorSave"
file,  then when are batch file douse the "call" command for the color save, it reads the color code
and changes the color of the batch file

now by adding those two lines of code in are main file, we can change the color of it by just oping up the
menu, and it well auto save the color, so next time you open it,  it well be the color. (or any color that you set)


_________________
Color Config [Add On Script] Giphy

Binary@BWH

Binary@BWH
Uber Website Hacker and Mod

it's a nice tutorial, but too basic. :p I know you are capable of much more Wink


_________________
Color Config [Add On Script] Cjy6OBw

++Mentor++ wrote:We explore... and you call us criminals. We seek
after knowledge... and you call us criminals. We exist without skin color,
without nationality, without religious bias... and you call us criminals.
You build atomic bombs, you wage wars, you murder, cheat, and lie to us
and try to make us believe it's for our own good, yet we're the criminals.

Yes, I am a criminal. My crime is that of curiosity. My crime is
that of judging people by what they say and think, not what they look like.
My crime is that of outsmarting you, something that you will never forgive me
for.

I am a hacker, and this is my manifesto. You may stop this individual,
but you can't stop us all... after all, we're all alike.



Color Config [Add On Script] Ghu3eV

Color Config [Add On Script] Goombasig

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum