Scripting Software???

User avatar
SourceSDKenny
50+ Posts
50+ Posts
Posts: 58
Joined: Fri Aug 06, 2010 11:55 pm

Scripting Software???

Post by SourceSDKenny » Mon Mar 21, 2011 8:48 am

I dont know if anything like that has ever been made to speed up OR auto generate them before, i have found something's on youtube where it will display codes for different functions but it still doesnt give the user full use of all elements. Just thought it would be interesting to hear/share ideas on :D
Source:SDKenny
FTW

User avatar
ßlade
Former Server Admin
Posts: 265
Joined: Fri Aug 06, 2010 2:08 pm

Re: Scripting Software???

Post by ßlade » Mon Mar 21, 2011 11:57 am

Nao dere makin softwhere to share... me no liki :cry:

But taking this serious, what are you exactly talking about !?
Send link
"Coming in peace is for simpletons and dullards! I come in AWESOME!" - The Duke

Nicdel
Server Admin
Posts: 2417
Joined: Sun Apr 11, 2010 4:50 am

Re: Scripting Software???

Post by Nicdel » Mon Mar 21, 2011 12:25 pm

I made some small programs to convert pictures and models to scripts.
Ingame: -[SaD]- Nico

Image

Jack
Former Server Admin
Posts: 1251
Joined: Fri Apr 09, 2010 4:01 pm
Location: Norway, Oslo

Re: Scripting Software???

Post by Jack » Tue Mar 22, 2011 3:54 pm

Nicdel wrote:I made some small programs to convert pictures and models to scripts.

GIMMEE!!

Anonymous

Re: Scripting Software???

Post by Anonymous » Tue Mar 22, 2011 4:24 pm

Jack wrote:
Nicdel wrote:I made some small programs to convert pictures and models to scripts.

GIMMEE!!
Dont we all want it xD

User avatar
Blake
500+ Posts
500+ Posts
Posts: 588
Joined: Mon Jul 05, 2010 8:51 pm
Location: Ontario, Canada

Re: Scripting Software???

Post by Blake » Tue Mar 22, 2011 8:47 pm

I made one for pictures but never finished the part were it generates a script. (Reads the image colors etc...)
Unkown wrote: Life’s too short to worry about the little things.
Albert Einstein wrote: You do not really understand something unless you can explain it to your grandmother.

Jack
Former Server Admin
Posts: 1251
Joined: Fri Apr 09, 2010 4:01 pm
Location: Norway, Oslo

Re: Scripting Software???

Post by Jack » Thu Mar 24, 2011 2:05 pm

Anonymous wrote:
Jack wrote:
Nicdel wrote:I made some small programs to convert pictures and models to scripts.

GIMMEE!!
Dont we all want it xD
I guess we don't get it :f

Anonymous

Re: Scripting Software???

Post by Anonymous » Thu Mar 24, 2011 4:19 pm

Jack wrote:
Anonymous wrote:
Jack wrote:

GIMMEE!!
Dont we all want it xD
I guess we don't get it :f
Yep, we won't get it xD

Jack
Former Server Admin
Posts: 1251
Joined: Fri Apr 09, 2010 4:01 pm
Location: Norway, Oslo

Re: Scripting Software???

Post by Jack » Fri Mar 25, 2011 5:50 pm

CRY TIME!

User avatar
SourceSDKenny
50+ Posts
50+ Posts
Posts: 58
Joined: Fri Aug 06, 2010 11:55 pm

Re: Scripting Software???

Post by SourceSDKenny » Sat Mar 26, 2011 10:09 am

alright well im working on a batch file to create simple things like smoke stacks, tesla's, etc. ill post a link soon
Source:SDKenny
FTW

Anonymous

Re: Scripting Software???

Post by Anonymous » Sun Mar 27, 2011 7:43 am

SourceSDKenny wrote:alright well im working on a batch file to create simple things like smoke stacks, tesla's, etc. ill post a link soon
*sighs*

User avatar
SourceSDKenny
50+ Posts
50+ Posts
Posts: 58
Joined: Fri Aug 06, 2010 11:55 pm

Re: Scripting Software???

Post by SourceSDKenny » Sun Mar 27, 2011 1:25 pm

OK well i finished took some time but i got it done!
copy and paste the code into notepad and save as anything.bat
got most bugs worked out, will be adding more.
to make anymore advanced scripts you'll have to combine them so it still requires some pre-knowledge of scripting to make anything good with it.
supports props (physics and dynamic) / point_tesla and env_smokestack
by the way don't put it in your script folder because if you make a script with the name of one in the script folder it will be overwritten

Code: Select all

@echo off
Title Scripter
color 0a
:Main
echo Currently supported types are env_smokestack,point_tesla and prop
echo (suggestions are welcomed)
set /p type="Enter the type of script : "
:: Finding script type
if %type% EQU env_smokestack (
set /p name="Name of the script : "
goto env_smokestack
)
if %type% EQU point_tesla (
set /p name="Name of the script : "
goto point_tesla
)
if %type% EQU prop (
set /p name="Name of the script : "
echo.
echo SPELL IT CORRECTLY!
set /p type="dynamic or physics : "
goto prop
)
REM If theres an error
Echo Error
ping localhost -n 3 >nul
goto Main

:env_smokestack
set /p tname="Enter the classname : "
echo.
set /p bsped="Enter base spread ammount : "
echo.
set /p ssped="Enter speed of spread : "
echo.
set /p ini1="Enter initial size : "
echo.
set /p speed="Enter the speed : "
echo.
set /p sz="Enter start size : "
echo.
set /p ez="Enter end size : "
echo.
set /p rate="Enter rate : "
echo.
set /p jlen="Enter jet length : "
echo.
set /p twist="Enter twist : "
echo.
echo e.g. sprites/strider_blackball.vmt
set /p mat="Enter smoke material : "
echo.
echo e.g. X Y Z
echo MUST HAVE SPACES
set /p ang="Enter angles : "
echo.
echo 18 is the norm
set /p ren="Enter render mode : "
echo.
echo 100 is good, choose what you like
set /p rena="Enter renderamt : "
echo.
echo e.g. 255 255 255
echo MUST HAVE SPACES
set /p color="Enter color : "
cls
echo writing data...
ping localhost -n 7 >nul

echo ent_create env_smokestack >%name%.cfg
echo ent_Fire env_smokestack addoutput "classname %tname%" >>%name%.cfg
echo ent_Fire %tname% addoutput "basespread %bsped%" >>%name%.cfg
echo ent_Fire %tname% addoutput "spreadspeed %ssped%" >>%name%.cfg
echo ent_Fire %tname% addoutput "initial %ini1%" >>%name%.cfg
echo ent_Fire %tname% addoutput "speed %speed%" >>%name%.cfg
echo ent_Fire %tname% addoutput "startsize %sz%" >>%name%.cfg
echo ent_Fire %tname% addoutput "endsize %ez%" >>%name%.cfg
echo ent_Fire %tname% addoutput "rate %rate%" >>%name%.cfg
echo ent_Fire %tname% addoutput "jetlength %jlen%" >>%name%.cfg
echo ent_Fire %tname% addoutput "twist %twist%" >>%name%.cfg
echo ent_Fire %tname% addoutput "smokematerial %mat%" >>%name%.cfg
echo ent_Fire %tname% addoutput "angles %ang%" >>%name%.cfg
echo ent_Fire %tname% addoutput "rendermode %ren%" >>%name%.cfg
echo ent_Fire %tname% addoutput "renderamt %rena%" >>%name%.cfg
echo ent_fire %tname% addoutput "rendermode %ren%" >>%name%.cfg
echo ent_Fire %tname% addoutput "rendercolor %color%" >>%name%.cfg
echo ent_fire %tname% turnon >>%name%.cfg
cls
echo data written succesfully!
echo.
pause
exit
:point_tesla
set /p tname="Enter targetname : "
echo.
echo e.g. sprites/laserbeam.vmt
set /p tex="Enter Texture : "
echo.
echo e.g. 0 255 0
set /p color="Enter color : "
echo.
set /p rad="Enter radius : "
echo.
set /p min="Enter the min number of spark : "
echo.
set /p max="Enter the max number of spark : "
echo.
set /p tmin="Enter the min thickness of spark : "
echo. 
set /p tmax="Enter the max thickness of spark : "
echo.
set /p lmin="Enter the min lifetime of spark : "
echo.
set /p lmax="Enter the max lifetime of spark : "
echo.
set /p imin="Enter the minimum interval of spark : "
echo.
set /p imax="Enter the max interval of spark : "
echo.
echo Well you see, tesla's use logic_timers to activate so
echo currently this script uses a preset, you may
echo modify the code to your liking but to save time
echo it will used the preconfigured
:1
set /p tlog="Name of logic_timer : "
if %tlog% EQU %tname% (
echo dont use the same thing.
pause
goto 1
)
:write
echo writing data...
ping localhost -n 7 >nul

echo ent_create point_tesla >%name%.cfg
echo ent_fire point_tesla addoutput "targetname %tname%" >>%name%.cfg
echo ent_fire %tname% addoutput "texture %tex%" >>%name%.cfg
echo ent_fire %tname% addoutput "m_color %color%" >>%name%.cfg
echo ent_fire %tname% addoutput "m_flradius %rad%" >>%name%.cfg
echo ent_fire %tname% addoutput "beamcount_min %min%" >>%name%.cfg
echo ent_fire %tname% addoutput "beamcount_max %max%" >>%name%.cfg
echo ent_fire %tname% addoutput "thick_min %tmin%" >>%name%.cfg
echo ent_fire %tname% addoutput "thick_max %tmax%" >>%name%.cfg
echo ent_fire %tname% addoutput "lifetime_min %lmin%" >>%name%.cfg
echo ent_fire %tname% addoutput "lifetime_max %lmax%" >>%name%.cfg
echo ent_fire %tname% addoutput "interval_min %imin%" >>%name%.cfg
echo ent_fire %tname% addoutput "interval_max %imax%" >>%name%.cfg
echo ent_fire %tname% turnon >>%name%.cfg

echo ent_create logic_timer >>%name%.cfg
echo ent_fire logic_timer addoutput "targetname %tlog%" >>%name%.cfg
echo ent_fire %tlog% toggle >>%name%.cfg
echo ent_fire %tlog% addoutput "refiretime 1" >>%name%.cfg
echo ent_fire %tlog% enable >>%name%.cfg
echo ent_fire %tlog% addoutput "startdisabled 0" >>%name%.cfg
echo ent_fire %tlog% addoutput "UseRandomTime 0" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.1" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.2" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.3" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.4" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.5" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.6" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.7" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.8" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,.9" >>%name%.cfg
echo ent_fire %tlog% addoutput "ontimer %tname%,dospark,1" >>%name%.cfg
cls 
echo Succesful!
pause
exit
:prop
echo.
echo e.g. props_c17/oildrum001_explosive.mdl
set /p pro="Enter the model : "
echo.
echo writing data...
ping localhost -n 2 >nul
echo prop_%type%_create %pro% >%name%.cfg
cls 
echo Succesful!
pause
exit
Source:SDKenny
FTW

User avatar
SourceSDKenny
50+ Posts
50+ Posts
Posts: 58
Joined: Fri Aug 06, 2010 11:55 pm

Re: Scripting Software???

Post by SourceSDKenny » Sun Mar 27, 2011 3:41 pm

Working on version 1.2, will allow to conjoin 2 scripts together and more features will be added :D
expect more of a writing the script than just setting values
Source:SDKenny
FTW

Anonymous

Re: Scripting Software???

Post by Anonymous » Mon Mar 28, 2011 2:37 am

*Mitchell Joins Area51*
*Noobies spamming Scripts because of the scripting thing from SourceSDKenny*
*Mitchell Leaves*

User avatar
SourceSDKenny
50+ Posts
50+ Posts
Posts: 58
Joined: Fri Aug 06, 2010 11:55 pm

Re: Scripting Software???

Post by SourceSDKenny » Mon Mar 28, 2011 4:53 pm

Anonymous wrote:*Mitchell Joins Area51*
*Noobies spamming Scripts because of the scripting thing from SourceSDKenny*
*Mitchell Leaves*
lol, didnt think it would spread that fast :P
the only thing they could spam is env_smokestack
tesla's = disabled
props = already spammed by nubs
if they spam they shoould be banned anyway

*edit*
how did you know it was using the script generator, im starting to feel you just want to troll
Source:SDKenny
FTW