Top

F0x's Game Launcher v1.0


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Sep 29, 2007
Last Updated  Sep 29, 2007
Tags  2  2142  battlefield  chaos  f0x  game  jedi  last  launcher  menu  poker  runescape  star  teamspeak  ventrilo  wars  xfire 

Introduction

F0x's Game Launcher
www.f0xb0t.net.tc
Created By F0x Of The SwiftIRC Network
The Menu Below Contains All The Games I Currently Have, They Are In Default Install Locations. If You Have Them In Different Locations You Will Need To Change The Locations Yourself.

Grab the Code

;F0x's Game Launcher
;www.f0xb0t.net.tc
;Created By F0x Of The SwiftIRC Network
;The Menu Below Contains All The Games I Currently Have, They Are In Default Install Locations.
;If You Have Them In Different Locations You Will Need To Change The Locations Yourself.
 
menu * {
  F0x's Game Launcher
  .Card Games
  ..Spider Solitare:/run C:\WINDOWS\system32\spider.exe
  ..Solitare:/run C:\WINDOWS\system32\sol.exe
  ..Freecell:/run C:\WINDOWS\system32\freecell.exe
  ..Hearts:/run C:\WINDOWS\system32\mshearts.exe
  ..Full Tilt Poker:/run C:\Program Files\Full Tilt Poker\FullTiltPoker.exe
  .First Person Shooters
  ..Battlefield 2:/run C:\Program Files\EA GAMES\Battlefield 2\BF2.exe
  ..Unreal Tournament:/run C:\Program Files\Unreal Tournament\Unreal Tournament\System\UnrealTournament.exe
  ..Wolfenstein - Enemy Territory:/run C:\Program Files\Wolfenstein - Enemy Territory\ET.exe
  ..Soldier Front:/run C:\ijji\ENGLISH\u_sf\soldierfront.exe
  ..Gunz:/run C:\ijji\ENGLISH\Gunz\Gunz.exe
  ..F.E.A.R Combat Multiplayer:/run C:\Program Files\Sierra\FEARCombat\FEARMP.exe
  ..Jedi Knight Jedi Academy
  ...Single Player:/run C:\Program Files\Star Wars Jedi Knight Jedi Academy\GameData\jasp.exe
  ...Multi Player:/run C:\Program Files\Star Wars Jedi Knight Jedi Academy\GameData\jamp.exe
  .MMORPGs
  ..Last Chaos:/run C:\AeriaGames\LastChaosUSA\LC.exe
  ..Runescape (SwiftSwitch):/run C:\Program Files\SwiftSwitch\SwiftSwitch.exe
  .Strategy Games
  ..Empire Earth:/run C:\Program Files\Empire Earth\Empire Earth.exe
  ..MineSweeper:/run C:\WINDOWS\system32\winmine.exe
  ..Strategy/Space Fighter
  ...Allegiance:/run C:\Program Files\Microsoft Games\Allegiance\ASGSClient.exe
  .Racing Games
  ..Midtown Madness 2:/run C:\Program Files\Microsoft Games\Midtown Madness 2\Midtown2.exe
  ..NFS Underground 2:/run C:\Program Files\EA GAMES\Need for Speed Underground 2\speed2.exe
  .Communication
  ..Teamspeak 2:/run C:\Program Files\Teamspeak2_RC2\TeamSpeak.exe
  ..Ventrilo:/run C:\Program Files\Ventrilo\Ventrilo.exe
  ..Xfire:/run C:\Program Files\Xfire\xfire.exe
  ..GameSpy Arcade:/run C:\Program Files\GameSpy Arcade\Aphex.exe
  .Demos
  ..Medieval 2 Total War:/run C:\Program Files\SEGA\Medieval II Total War Demo SE\medieval2.exe
  ..Battlefield 2142:/run C:\Program Files\Electronic Arts\Battlefield 2142 Demo\BF2142.exe
}
 

Comments

  (9)  RSS
Akishoot
Comments: 139
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 29, 2007 10:16 pm
One problem I do see with this script is that (as you stated in the Introduction), what if the person did not save the game to that directory? You should allow them to locate the .exe file manually using $sfile and setting a variable. This would make it a lot easier then having to type it all out.

Here's an example using $sfile:

Code:

dialog example {
  title "Example"
  size -1 -1 144 58
  option pixels
  button "Find...", 1, 8 34 46 19
  button "Run", 2, 85 33 46 19
  edit "", 3, 8 10 127 20, autohs
}
on *:dialog:example:sclick:1:{
  set %Exam $sfile($mircdir*.exe,Locate Game .exe...,Open)
  did -ar example 3 %Exam
}
on *:dialog:example:sclick:2:{
  .run $did(example,3).text
}


Akishoot
Comments: 139
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 29, 2007 10:21 pm
Oops. That was using a dialog. Here's using menu's...:

Code:

menu menubar {
  Example
  .GameName
  ..Find Location:set %Exam $sfile($mircdir*.exe,Locate Game .exe...,Open)
  ..Run:.run %Exam
}
Sora-
Comments: 18
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 30, 2007 1:01 pm
Hmm, yeah, something must be wrong with it :|
* /run: unable to open 'C:\WINDOWS\system32\spider.exe'
* /run: unable to open 'C:\Program Files\Electronic Arts\Battlefield 2142 Demo\BF2142.exe'
* /run: unable to open 'C:\Program Files\Microsoft Games\Midtown Madness 2\Midtown2.exe'
simplicity
Comments: 17
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 30, 2007 1:31 pm
Or you could just make it:

Code:

alias game.run { 
 var %sfile $$sfile(C:\,Choose game/file you wish to run)
 run %sfile
}


That simple.
mountaindew
Comments: 1,826
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 30, 2007 7:05 pm
Quote:

..MineSweeper:/run C:\WINDOWS\system32\winmine.exe


does anyone else play minesweeper? my scores are 1-34-115
RubixCube
Comments: 51
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Sep 30, 2007 8:51 pm
This snippet isn't too great, I'm sorry. You seem to assume other users have these demos/games installed (some are) to the snippet user's computer, or you just got this code from your personal remotes. As the others have already said, it would be much more compatible to use a code as this:

Code:

menu channel {
  Run application:{
   var %t $$sfile(C:\,Choose an file/application to run:)
   run %t
  }
}

ƒØ×
Comments: 5
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Oct 1, 2007 5:26 am
If you read, it says these are the ones on my computer, i do not asume they have them, as for it being so simple, yes I know it is, I am only a new scripter.
RubixCube
Comments: 51
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Oct 1, 2007 5:34 am
Ah, I am sorry for my mistake. I didn't see that. It would still require a lot of work beforehand to use this snippet. As I said, it would be easier to have a user just run a selected program.

- RubixCube
Atm0sFeaR
Comments: 8
 
mIRC Snippet:  F0x's Game Launcher v1.0
Posted on Feb 7, 2009 11:22 am
this is the simple PopUp i think , but it is than wrong or not?
put the Popup/MenuBar

menu
.F0x's Game Launcher
.Card Games
..Spider Solitare:/run C:\WINDOWS\system32\spider.exe
..Solitare:/run C:\WINDOWS\system32\sol.exe

et....
or this wrong opinion?

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom