Toggle issues in EQ, please help!

Discussion of Inner Space

Moderators: Lavish Software Team, Moderators

Post Reply
darkrom
GamingTools Subscriber
Posts: 9
Joined: Sun Jan 30, 2005 1:17 am

Toggle issues in EQ, please help!

Post by darkrom » Mon Mar 21, 2005 3:23 am

Not sure what I am doing wrong but I am having 2 eq sessions, and ctrl+alt+x and z do not toggle the accounts. Only thing that does work is ctrl+alt+1 and 2. Btw this version is smooth! I have much less lag when i 2 box now.

Lax
Owner
Posts: 6634
Joined: Fri Jun 18, 2004 6:08 pm

Post by Lax » Mon Mar 21, 2005 3:35 am

You're not doing anything wrong, it's supposed to just work. :)

I will check it out and get a fix available later on Monday. Thank you for reporting the problem

Lax
Owner
Posts: 6634
Joined: Fri Jun 18, 2004 6:08 pm

Post by Lax » Mon Mar 21, 2005 1:12 pm

Ok. I've tested it with a clean installation and CTRL+ALT+X and CTRL+ALT+X are correctly switching sessions.

Did you just now install IS or did you have an installation previously? Can you open the file "PreInit.iss" in notepad (Found in your Inner Space folder's "Scripts" subfolder) and paste it here? It should look exactly like this:

Code: Select all

function EQSession()
{
; customize this part for EverQuest 1
  alias normalsize WindowSize -Reset
  alias tinysize WindowScale 20
  alias normalposition WindowPos -viewable ${Display.DesktopX},${Display.DesktopY}
  alias tinyposition WindowPos ${Math.Calc[${Display.DesktopX}+10].Int},${Math.Calc[${Display.DesktopY}+10].Int}
  alias fullscreenmouse DIMouse on
  alias normalmouse DIMouse on
  alias tinymouse DIMouse off
  alias pipforeground normal

  bind fullscreenkey shift+alt+f fullscreen
  bind normalkey shift+alt+n normal
  bind tinykey shift+alt+t tiny
  bind releasekey "Scroll Lock" DIMouse -lock toggle
  bind next ctrl+alt+x "uplink focus -next"
  bind previous ctrl+alt+z "uplink focus -previous"
}

function NormalSession()
{
; customize this part for other games
  alias normalsize WindowSize -viewable 1024x768
  alias tinysize WindowSize -viewable 256x192
  noparse alias normalposition WindowPos -viewable ${Display.DesktopX},${Display.DesktopY}
  noparse alias tinyposition WindowPos ${Math.Calc[${Display.DesktopX}+10].Int},${Math.Calc[${Display.DesktopY}+10].Int}
  alias fullscreenmouse
  alias normalmouse
  alias tinymouse
  alias pipforeground normal

  bind fullscreenkey shift+alt+f fullscreen
  bind normalkey shift+alt+n normal
  bind tinykey shift+alt+t tiny
  bind next ctrl+alt+x "uplink focus -next"
  bind previous ctrl+alt+z "uplink focus -previous"
}

function main()
{
  noparse alias showtexturemem hudadd TextureMem 20,35 "Texture Memory Available: ${Display.TextureMem}MB"
  alias hidetexturemem hudrem TextureMem
  noparse alias showsystemram hudadd SystemRAM 20,20 "System RAM Available: ${System.MemFree}MB/${System.MemTotal}MB"
  alias hidesystemram hudrem SystemRAM
  alias memoryindicatorON "varset memoryindicatorTOGGLE memoryindicatorOFF;showsystemram;showtexturemem"
  alias memoryindicatorOFF "varset memoryindicatorTOGGLE memoryindicatorON;hidesystemram;hidetexturemem"
  declare memoryindicatorTOGGLE string global memoryindicatorON
  noparse bind memoryindicator CTRL+ALT+M "execute ${memoryindicatorTOGGLE}"

  memoryindicatorON

  if ${Game.Name.Equal[EverQuest]}
  {
    FileRedirect eqlsPlayerData.ini "eqlsPlayerData-${Profile}.ini"
    INIRedirect eqclient.ini * * "eqclient-${Profile}.ini" * *
    call EQSession
  }
  else
    call NormalSession

noparse alias fullscreen "WindowSize -fullscreen;WindowPosition -viewable ${Display.DesktopX},${Display.DesktopY};fullscreenmouse"
alias normal "normalsize;normalposition;normalmouse"
alias tiny "tinysize;tinyposition;tinymouse"

}
If not, delete PreInit.iss as well as Games.xml (which is found in your main Inner Space folder) and start Inner Space, or uninstall and reinstall. Either method will refresh the files.

Let me know if you need further help, or if this does help fix your problem

Post Reply