Author Topic: (Project)(Idea)(Test) Script Master (Alpha)  (Read 1240 times)

0 Members and 1 Guest are viewing this topic.

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
(Project)(Idea)(Test) Script Master (Alpha)
« on: August 27, 2012, 04:55:53 am »
let me just say its late , im high, and iv had a long day so bare with me.

now i see the same questions\answers all the time.

how do be a 1337 h4x0r ??
learn to code
well where do i start, language and so on ?
try batch or vbs and progress
etc etc etc etc ^^ that was kinda short and sweet but you get the idea

i remember making my first batch file, it felt great. ok im rambling so whats the idea ?

Script Master:
 A basic all in one ide\compiler(of sorts) for windows scripting languages. with everything you need all there in one tool. here is a screenshot of the first alpha version the gui will change alot as stuff gets added
Image

this version only supports powershell scripts, the highlighting is C#, scripts are not encrypted and there are probably alot of bug but its an alpa,
i think it could be a very good tool for people wanting to learn to code, i wish i had something like thus when i wrote my first batch file. and now with powershell the possibility are endless

Features\Good Points
*Everything you need in one app (run\edit\etc)
*quick access to needed console (powershell.exe, cmd.exe, cscript.exe)
*Compile your scripts into an executable file (only 8kb overhead)
*Auto indentation in code editor

Ideas
*i have a few ideas about encrypted ps1 files (can allready run some commands from memory)
*lua suport
*python Suport

Download and help to test improve
http://qshare.com/get/1110265/SM.rar.html
Damm it feels good to be gangsta
http://bubzuru.comule.com

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: (Project)(Idea)(Test) Script Master (Alpha)
« Reply #1 on: August 27, 2012, 04:57:28 am »
little bug, you will need the pascal.xml file in the same dir (attatched rename to pascal.xml)

just as a quick example of the power of this. crate a new script in script master and add this code then run

Code: [Select]
$mysource = @"
public class CinaScript
{
   public static int RuncCode()
   {
      return 100 + 100;
   }
}
"@

Add-Type -TypeDefinition $mysource

$var = [CinaScript]::RuncCode()

write-host $var #will output 200. we just ran c# code so we can even call winapi 
Damm it feels good to be gangsta
http://bubzuru.comule.com