eq1 switching question

Discussion of Inner Space

Moderators: Lavish Software Team, Moderators

Post Reply
oddx
Non-Subscriber
Posts: 20
Joined: Thu Dec 30, 2004 6:02 pm

eq1 switching question

Post by oddx » Sat Apr 02, 2005 7:22 pm

can IS switch eq1 sessions while in full screen mode? It keeps changing them to window mode before changing.

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

Post by Lax » Sat Apr 02, 2005 7:38 pm

That's the behavior of EverQuest, IS has nothing to do with it ;) If you need fast switching, you need to run in windowed mode.

oddx
Non-Subscriber
Posts: 20
Joined: Thu Dec 30, 2004 6:02 pm

Post by oddx » Sat Apr 02, 2005 7:39 pm

thanks, windowed mode with the is shift+alt+f works great :) now to figure out pip

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

Post by Lax » Sat Apr 02, 2005 7:42 pm

until the next release, the way to turn on PiP is to go into your EQ profile and find the "On Activate" line -- set it to "run pip". Next release it will be using a new system

You should be aware that by default, the window will return to "normal" mode when you switch to it. You can change that by editing PreInit.iss so the "pipforeground" command is "fullscreen" instead of "normal"

oddx
Non-Subscriber
Posts: 20
Joined: Thu Dec 30, 2004 6:02 pm

Post by oddx » Sat Apr 02, 2005 8:05 pm

great! just need to figure out how to move the pip window, and turn off the system messeges that are at the top

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

Post by Lax » Sat Apr 02, 2005 8:16 pm

CTRL+ALT+M to remove the memory indicator

to move the PIP window, you must edit Scripts\pip.iss, you will see at the very top where it says "This is the upper left corner"

oddx
Non-Subscriber
Posts: 20
Joined: Thu Dec 30, 2004 6:02 pm

Post by oddx » Sat Apr 02, 2005 8:21 pm

one last question i didnt see answered very clearly anywhere.. can i change the ` key to something else to open the consoles?

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

Post by Lax » Sat Apr 02, 2005 8:28 pm

Definitely. It's just a bind, so you just enter a command to change it. Here's what it is by default:
bind console ` console toggle

It's done internally of course, but you can use the command to change it to whatever you'd like. You can do this each time, or automatically by placing it in a file you create called AutoExec.ice. This file will be run when any game loads up through IS, and it's just a list of commands you dont want to have to type each time, such as the bind command to change the console key.

oddx
Non-Subscriber
Posts: 20
Joined: Thu Dec 30, 2004 6:02 pm

Post by oddx » Sat Apr 02, 2005 8:39 pm

works great, thanks for the speedy responses :)

Wink-
GamingTools Subscriber
Posts: 6
Joined: Wed Sep 01, 2004 10:28 am

Post by Wink- » Tue May 03, 2005 2:21 pm

In my AutoExec.ice, do I change " bind console ` console toggle" to "bind console Shift ` console toggle" minus quotes to change the console toggle to a Shift key combo? I must be getting the syntax wrong, the aformentioned didn't work.

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

Post by Lax » Tue May 03, 2005 4:45 pm

The syntax is the same as WinEQ hotkeys, so if you've used that, its the same. Anyway:
bind console shift+` console toggle

Wink-
GamingTools Subscriber
Posts: 6
Joined: Wed Sep 01, 2004 10:28 am

Post by Wink- » Tue May 03, 2005 10:11 pm

Thanks, I tried that except I added a space. Shift + ` which did not work. Great stuff here.

Red
GamingTools Subscriber
Posts: 22
Joined: Thu Aug 12, 2004 4:50 pm

order of ops

Post by Red » Wed May 04, 2005 11:35 am

Speaking of Autoexec.ice.

When do these get executed in relation to the game being ready for it.
I guess the best example would be EQ. I need to do

[code]

ext ISXEQ
ext ISXTeamspeak
Runscript TeamSpeakHud
ext ISXIRC
iconnect
...etc
[/code]

You obviously don't want to do all that when you are at the login or server select screen, so where would be the appropriate place for it, so that it executes when EQ is ready? Or would it be better to just create my own .iss to do everything I want to "startup" and when I get ingame just RunScript Startup.iss?


-Red

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

Post by Lax » Wed May 04, 2005 11:49 am

ISXEQ is MQ2 built for IS.. with that in mind, remember that MQ2 is loaded into the game whenever both MQ2 and the game are running -- and that can be before the EULA appears, while you're in game, etc. It's perfectly fine for you to do those commands any time.

However....
If you place those commands in autoexec.ice, they will be executed each and every time ANY IS session is started. That means the EQ patcher (if you wanted that to run), and even any other game. You would be much better off placing it in a game-specific or profile-specific startup file.

Post Reply