xboxscene.org forums

Pages: [1] 2 3 ... 9

Author Topic: Share Scripts For Others  (Read 1583 times)

BenJeremy

  • Archived User
  • Hero Member
  • *
  • Posts: 5645
Share Scripts For Others
« on: January 11, 2004, 05:09:00 AM »

I will try and get a host of events to trigger action scripts on for the next public release.
Logged

jcupp114

  • Archived User
  • Full Member
  • *
  • Posts: 237
Share Scripts For Others
« Reply #1 on: January 17, 2005, 04:43:00 PM »

Question:
Did everyone stop the scripts?
We need ressurrection? heheh

Take care

jcupp114
Logged

big_gun

  • Archived User
  • Newbie
  • *
  • Posts: 7
Share Scripts For Others
« Reply #2 on: May 09, 2005, 07:47:00 AM »

New Script: InstallX v1.0.0.0
Author     : Rick Ratayczak [email protected]
Website    : http://www.activeaspsoftware.net/

---- What this program does?
It's a MXM action script that installs a folder of files onto the hard drive
from a CD.

---- Why?
In case you have a friend with an modded xbox and no internet connection. You
can distribute updates, even like a slayer's auto installer type disc. The other
installers I've seen are ugly! This one is user friendly and pleasing to the
eyes.

---- How to use?
Set the 3 variables in the autorun.xas and then put files into the setup folder.
Build an xiso and go!

You need to put the default.xbe from MXM in the folder too.

Download from

http://dev.activeasp...stallX_v1_0.zip (1 MB)

Enjoy!

Rick
Logged

big_gun

  • Archived User
  • Newbie
  • *
  • Posts: 7
Share Scripts For Others
« Reply #3 on: May 15, 2005, 02:51:00 AM »

Bump! Any feedback on this? What do you guys think?
Logged

m3tro

  • Archived User
  • Newbie
  • *
  • Posts: 32
Share Scripts For Others
« Reply #4 on: June 04, 2005, 08:09:00 PM »

want to make a script that can replace text in ex. ini-files at spcified lines (even more specified if possible).  meny.xml : callscript textedit e:\test.ini line45 "TEXT TEXT TEXT"
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #5 on: September 28, 2003, 04:15:00 PM »

Please share all your scripts here, they can help other to understand AS or bring them to new ideas. IF you have a question ask here.

If nobody should share his script without me, this will be the only scripts i ever post here for you.

I know that there are people who are much better in ActionScript as i.

This post has been edited by vexx22: Sep 28 2003, 11:31 PM
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #6 on: September 28, 2003, 04:19:00 PM »

Here is my best script  i call it "Copy Single Game DVD"some little detail were integratet from HABs69m
QUOTE

<Action>

SET SomeVar $DVDType$
TrayClose
Delay 10

If %SomeVar% == "game disc" GOTO Launch
If %SomeVar% != "game disc" GOTO begin


:begin
TrayOpen
BeginDraw UseCurrent
   MessageBox "Please insert A Game to Copy$eol$Press A to Continue$eol$Press B to Cancel"
EndDraw

  Input
    If %_GP_A% == "1" GOTO APRESSED
    If %_GP_B% == "1" GOTO BPRESSED
  QUIT

:APRESSED
  Trayclose
  Delay 10
  GOTO Launch

:BPRESSED
TrayClose
  QUIT

:Launch
  SETFUNC DVDTitle XBETITLE D:\DEFAULT.XBE
  SETFUNC DVDSIZE FILESIZE D:\DEFAULT.xbe

BeginDraw UseCurrent
  MessageBox "Press A to Copy %DVDTitle% or B to Cancel"
EndDraw

  Input
    If %_GP_A% == "1" GOTO A2PRESSED
    If %_GP_B% == "1" GOTO BPRESSED
  QUIT

:A2PRESSED
BeginDraw UseCurrent
MessageBox "DVD is Copying"
EndDraw
MKDIR F:\games\%DVDTITLE%
Copy D:\ F:\games\%DVDTITLE%
BeginDraw UseCurrent
MessageBox "%DVDTitle% is on Hard drive$eol$Will now reset MenuCache"
EndDraw
TrayOpen
Delay 10
ResetMenuCache

BeginDraw UseCurrent
MessageBox "Press A to Reboot$eol$Press B to Reboot later"
EndDraw

Input
If %_GP_A% == "1" GOTO A3PRESSED
If %_GP_B% == "1" GOTO BPRESSED
QUIT

:A3PRESSED
Trayclose
Reboot
QUIT

</Action>



This post has been edited by vexx22: Sep 28 2003, 11:38 PM
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #7 on: September 28, 2003, 04:23:00 PM »

Here is a simple XBOX Disc Lauch script with checking system, too.

QUOTE

<Action>

SET SomeVar $DVDType$
TrayClose
Delay 10

:check
If %SomeVar% == "game disc" GOTO Launch
If %SomeVar% != "game disc" GOTO begin




:begin
TrayOpen
  BeginDraw UseCurrent
   MessageBox "Please insert A Game$eol$Press A to Continue$eol$Press B to Chancel"
  EndDraw

  Input
    If %_GP_A% == "1" GOTO APRESSED
    If %_GP_B% == "1" GOTO BPRESSED
  QUIT

:APRESSED
trayclose
delay 10
goto check

:BPRESSED
  QUIT

:Launch
  SETFUNC DVDTitle XBETITLE D:DEFAULT.XBE

  BeginDraw UseCurrent
  MessageBox "Press A to Launch %DVDTitle% or B to Cancel"
  EndDraw

  Input
    If %_GP_A% == "1" GOTO A2PRESSED
    If %_GP_B% == "1" GOTO BPRESSED
  QUIT

:A2PRESSED
LaunchDVD
MessageBox "%DVDTitle% is Starting"
QUIT

</Action>


This post has been edited by vexx22: Oct 4 2003, 12:08 AM
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #8 on: September 28, 2003, 04:25:00 PM »

This is a script to control a little box on the screen with your D-Pad. After starting script click on D-Pad to activate. This script is not from me but i correct the version from this board and now it runs.

QUOTE

<Action>
SET YY 100
SET XX 100

:BLAH
Input

If %_GP_D_LF% == "1" GOTO LF
If %_GP_D_UP% == "1" GOTO UP
If %_GP_D_DN% == "1" GOTO DN
If %_GP_D_RT% == "1" GOTO RT
If %_GP_A% == "1" GOTO EXIT
Quit

:UP
SUB YY 5
GOTO DRAWIT
:DN
ADD YY 5
GOTO DRAWIT
:LF
SUB XX 5
GOTO DRAWIT
:RT
ADD XX 5
GOTO DRAWIT

:DRAWIT
BEGINDRAW
BOX %XX% %YY% 10 10 Black White
ENDDRAW
GOTO BLAH

:EXIT
QUIT

</Action>


This post has been edited by vexx22: Sep 29 2003, 02:58 PM
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #9 on: September 28, 2003, 04:28:00 PM »

This is a short Script to control your intern Xbox Fans, Only to Optiions are aviable, 100% and default.

QUOTE

<Action>
BeginDraw UseCurrent
   MessageBox "Press A for 100 Percent$eol$Press B for Default"
EndDraw

  Input
    If %_GP_A% == "1" GOTO APRESSED
    If %_GP_B% == "1" GOTO BPRESSED
  QUIT

:APRESSED
  SETFANSPEED Manual 100%
  SETFANSPEED Manual 100%
  QUIT

:BPRESSED
  SETFANSPEED default
  SETFANSPEED default
  QUIT


</Action>
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #10 on: September 28, 2003, 04:29:00 PM »

Please post importent changes, like adding  something good to the script. So that we can see what we forget.  
Logged

flattspott

  • Archived User
  • Hero Member
  • *
  • Posts: 1220
Share Scripts For Others
« Reply #11 on: September 28, 2003, 07:17:00 PM »

Why did you put the Fanspeed functions down two times each?
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #12 on: September 29, 2003, 04:50:00 AM »

to flatspot. They are put two times because if i made it only one time you need to activate the script two time. And with this configuration you need only open the script one time.
Logged

BenJeremy

  • Archived User
  • Hero Member
  • *
  • Posts: 5645
Share Scripts For Others
« Reply #13 on: September 29, 2003, 04:54:00 AM »

I think there's some wierdness in the fanspeed stuff.... what I observed might have been a delay or rampup time for the speed to adjust, though.
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Share Scripts For Others
« Reply #14 on: September 29, 2003, 12:54:00 PM »

Is nobody interested in sharing his scripts with others? I don´t post my new scripts without other poting their scripts.
I mean i am not the one and only who program scripts for MXM, or am i? Come on you don´t need to share perfect scripts or big scripts. Share small and scripts who failed in function. Then all can watch and try to help, and much people can learn how to use ActionScript, and get new ideas.
Logged
Pages: [1] 2 3 ... 9