yeh well the alias is ingameirc

im trying to implent this into a dialog box
Code:
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;config part
  ;main settings
  ;---parameters-2-
  ;the game u want to use whit irc (allowed values: RTCW ET Q3 COD CODUO ALL)
  ;,nummerofchannels is the nummer of channel u want to send to (allowed values: nummers bigger then 0)
  ;----------------
  $ingameirc_setmain(RTCW,15)

  ;list of channels to send to ingame
  ;---parameters-3-
  ;nummer of the channel u wana set this must be inside the nummerofchannels (allowed values: nummers)
  ;,channel name including the # (allowed values: text)
  ;,flags used to decide wut messages to send and witch not to send (allowed values: text only cnatijqpkbm)
  ;----------------
  ;allowed values:
  ;c = normal chats
  ;n = notice
  ;a = action
  ;t = toipc
  ;i = nick
  ;j = join
  ;q = quit
  ;p = part
  ;k = kick
  ;b = ban
  ;m = channel modes
  ;if u use UPPERCASE flags that message will be private messaged to u in ingame chat (useing /msg %ingameirc_nickname messsage)(only ET:ETPRO / RTCW:BANIMOD)(allowed values: text CNATIJQPKBM)
  $ingameirc_addchannel(0,#etpro,Ctnaijqpkbm)
  $ingameirc_addchannel(1,#etpro-ops,CTNAIJQPKBM)
  $ingameirc_addchannel(2,#[fp]clan,ctnaijqpkbm)
  $ingameirc_addchannel(3,#sjappie,ctnaijqpkbm)
  $ingameirc_addchannel(4,#worrum,ctnaijqpkbm)
  $ingameirc_addchannel(5,#=FF=Clan,CTNAIJQPKBM)
  $ingameirc_addchannel(6,#ettv,cna)
  $ingameirc_addchannel(7,#lan2000,Ctnaijqpkbm)
  $ingameirc_addchannel(8,#revive.rtcw,cna)
  $ingameirc_addchannel(9,#map-design,cna)

  ;your ingame nickname (used to msg yourself ingame)(allowed values: text)
  %ingameirc_nickname = =FF=Im2good4u

  ;ingame prefix added to your messages (allowed values: text)
  %ingameirc_prefix = (ingame)

  ;send query messages (allowed values: 1 0)
  %ingameirc_sendquery = 1
  ;send DCC chats (allowed values: 1 0)
  %ingameirc_senddcc = 1

  ;reading interval delay (allowed values: nummers bigger then 10)
  %ingameirc_readingdelay 1000

  ;scriptmode 0 = disabled 1 = enabled 2 = enabled whit reading console (allowed values: 0 1 2)
  %ingameirc_script = 2
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
now that not much use
atm i but the options in a simpel right mouse bottun menu
Code:
menu channel {
  -
  Ingame Irc
  .Options
  ..Menu: ingameirc
  ..$iif(%ingameirc_script > 0,$style(1)) Run/Stop
  ...$iif(%ingameirc_script > 0,$style(2)) Start (mirc>console): ingameirc_start 1
  ...$iif(%ingameirc_script > 1,$style(2)) Start (mirc><console): ingameirc_start 2
  ...$iif(%ingameirc_script == 0,$style(2)) Stop: ingameirc_stop
  ..Game
  ...$iif(%ingameirc_game == RTCW,$style(1)) RTCW: ingameirc_setgame RTCW
  ...$iif(%ingameirc_game == ET,$style(1)) ET: ingameirc_setgame ET
  ...$iif(%ingameirc_game == Q3,$style(1)) Q3: ingameirc_setgame Q3
  ...$iif(%ingameirc_game == COD,$style(1)) COD: ingameirc_setgame COD
  ...$iif(%ingameirc_game == CODUO,$style(1)) CODUO: ingameirc_setgame CODUO
  ...$iif(%ingameirc_game == ALL,$style(1)) All: ingameirc_setgame ALL
  ..Ingame Nick: %ingameirc_nickname = $?="Ingame Nicknam:"
  ..Ingame Prefix: %ingameirc_prefix = $?="Ingame Prefix:"
  ..$iif(%ingameirc_sendquery == 1,$style(1)) Send Querys: %ingameirc_sendquery = $ingameirc_switch(%ingameirc_sendquery)
  ..$iif(%ingameirc_senddcc == 1,$style(1)) Send DCCs: %ingameirc_senddcc = $ingameirc_switch(%ingameirc_senddcc)
  ..
  .Channel
  ..$iif($ingameirc_checkchan($chan) >= 0,$style(1)) Add/Remove
  ...$iif($ingameirc_checkchan($chan) >= 0,$style(2)) Add (chat): $ingameirc_addchan(%ingameirc_chanptr,$chan,c)
  ...$iif($ingameirc_checkchan($chan) >= 0,$style(2)) Add (chat+notic+action): $ingameirc_addchan(%ingameirc_chanptr,$chan,cna)
  ...$iif($ingameirc_checkchan($chan) >= 0,$style(2)) Add (full): $ingameirc_addchan(%ingameirc_chanptr,$chan,ctnaijqpkbm)
  ...$iif($ingameirc_checkchan($chan) >= 0,,$style(2)) Remove: $ingameirc_removechan($chan)
  ..Flags
  ...$iif($ingameirc_checkflags(c),$style(1)) Chat:
  ...$iif($ingameirc_checkflags(n),$style(1)) Notice:
  ...$iif($ingameirc_checkflags(a),$style(1)) Action:
  ...$iif($ingameirc_checkflags(t),$style(1)) Topic:
  ...$iif($ingameirc_checkflags(i),$style(1)) nIck:
  ...$iif($ingameirc_checkflags(j),$style(1)) Join:
  ...$iif($ingameirc_checkflags(q),$style(1)) Quit:
  ...$iif($ingameirc_checkflags(p),$style(1)) Part:
  ...$iif($ingameirc_checkflags(k),$style(1)) Kick:
  ...$iif($ingameirc_checkflags(b),$style(1)) Ban:
  ...$iif($ingameirc_checkflags(m),$style(1)) Modes:
  .Send to Ingame: ingameirc_sendtoconsole $?="Command:"
}
i need soem ediboxes some check boxes but that not the real prob i first ned it to laod the dialogbox
Code:
alias ingameirc {

}