Site hosted by Angelfire.com: Build your free website today!
Home Subscriptions IRC Arcade User CP New Posts Mark Forums Read Log Out Files Wiki Forums

Go Back   MMOBugs - Cheat Smarter > Premium Members Forums > General MMO Game Discussion
Welcome, cupofjo.
You last visited: 23 Hours Ago at 12:30 AM
Private Messages: Unread 0, Total 190.

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
  #1   Add to cudacuf's Reputation   Report Post  
Old December 12th, 2008
cudacuf's Avatar
cudacuf cudacuf is offline
Bangs Strippers
 
Join Date: Oct 2006
Location: Bay Area
Posts: 480
Rep Power: 148
cudacuf will become famous soon enoughcudacuf will become famous soon enough
InnerSpace

I've recently been talked into switching from WInEQ2 to InnerSpace and so far I'm pretty satisfied with it. I'm working on configuring a few things to how I like them and I saw a few of the UI mods on their website.

http://lavishsoft.com/wiki/index.php/ClickBoxer
http://lavishsoft.com/wiki/index.php/IS:Ventrilo

Those are two that I thought were pretty cool and I was wondering if we could get an InnerSpace Forum here on the boards or at least a dedicated thread for people to share the mods they use and maybe some configuration tricks that some might not know about.
Reply With Quote Multi-Quote This Message
  #2   Add to Fry's Reputation   Report Post  
Old December 12th, 2008
Fry's Avatar
Fry Fry is offline
Fry Guy
 
Join Date: Jan 2005
Location: Australia
Posts: 6,501
Rep Power: 10
Fry has disabled reputation
Feel free to use the code snippets forum for the time being. If enough threads come up I'll make a new forum for it. Make sure you mark all threads with IS or Innerspace in the thread title.
Reply With Quote Multi-Quote This Message
  #3   Add to htw's Reputation   Report Post  
Old December 13th, 2008
htw's Avatar
htw htw is offline
Strip Club Entrepreneur
 
Join Date: Aug 2006
Location: Albuquerque, NM
Posts: 3,844
Rep Power: 10
htw has disabled reputation
Send a message via AIM to htw Send a message via MSN to htw Send a message via Skype™ to htw
Here are a couple of things I changed in mine.

I did not care for the window titles being like "is1 (CTRL+ALT+1)", "is2 (CTRL+ALT+2)", etc., so I changed the script to show the profile name. I name the profiles by the "main" toon name on the account the profile is configured for, so for example, if acct #1's main is named Bubba, then my titlebar for that session shows "Bubba (1)". I just put 1 there, as I know it's ctrl+alt+1, and don't really need to waste that space. ;-) You can modify it to your liking though, so here is how you do that:

1) Go to your InnerSpace\Scripts directory. You will see the file you want to modify in there, it is called DefaultStartup.iss. However, you can't just edit this one, or the patcher will just patch it back again. Copy DefaultStartup.iss to EQStartup.iss.



2) Edit EQStartup.iss. Look down around line 70 or so, you see a line
Code:
WindowText is${Count} (CTRL+ALT+${Count})
and change it to:
Code:
WindowText ${Profile} (${Count})
and a few lines below that:
Code:
WindowText is${Count} (No Hotkey)
and change it to:
Code:
WindowText ${Profile} (No Hotkey)
Also, you could just comment out the old ones, and put yours in. Here is what mine looks like in that section:



3. Save the file. Now, go edit your session startup sequence in InnerSpace. Insert init for EQStartup right before DefaultStartup. (this is from the General tab in Inner Space Configuration, under Startup Sequences & under Session, click on the Startup button).






Click the Finished button, and all done.

If you have a quad core, and want to set cpu affinity for multiple sessions between all 4 cores (instead of just core 1/2 by default), you can do that also in your new EQStartup.iss script.

Look in the script for the EQSession() function, and replace it with this one:

Code:
function EQSession()
{
/* customize this part for EverQuest 1 */

  /* EQ1 is unstable with multiple CPUs. This will rotate the affinity between two cores */
	if ${SessionNumber}%4==0
	{
		proc 4 only
	}
	else
	{
		if ${SessionNumber}%3==0
		{
			proc 3 only
		}
		else
		{
			if ${SessionNumber}%2==0
			{
				proc 2 only
			}
			else  
			{
				proc 1 only
			}
		}
	}
  
  /* Set up our mouse transformation handler for when people resize the window, since EQ1 does not
     scale the display on purpose. */
  Event[On Window Position]:AttachAtom[EQOnWindowPos]

  alias normalsize WindowSize -Reset
  alias tinysize WindowScale 20
  alias pipforegroundsize WindowSize -Reset
  alias normalposition WindowPos -viewable ${Math.Calc[${Display.DesktopX}+10].Int},${Math.Calc[${Display.DesktopY}+10].Int}
  alias tinyposition WindowPos ${Math.Calc[${Display.DesktopX}+10].Int},${Math.Calc[${Display.DesktopY}+10].Int}
  alias pipforegroundposition WindowPos -viewable ${Display.DesktopX},${Display.DesktopY}
  alias fullscreenmouse
  alias normalmouse
  alias tinymouse
  alias pipforegroundmouse

  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"
}
Save, start up (or restart) InnerSpace.

htw
Attached Files
File Type: zip EQStartup.zip (1.9 KB, 0 views)
__________________
Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour.

Click here to donate to htw


Last edited by htw; December 13th, 2008 at 03:14 PM. Reason: Attached EQStartup.zip (iss)
Reply With Quote Multi-Quote This Message
  #4   Add to cudacuf's Reputation   Report Post  
Old December 13th, 2008
cudacuf's Avatar
cudacuf cudacuf is offline
Bangs Strippers
 
Join Date: Oct 2006
Location: Bay Area
Posts: 480
Rep Power: 148
cudacuf will become famous soon enoughcudacuf will become famous soon enough
I dont have a quadcore. I'm just running a dualcore. So, can I change

Code:
  /* EQ1 is unstable with multiple CPUs. This will rotate the affinity between four cores */
  if ${SessionNumber}%4==0
     proc 4 only
  else if ${SessionNumber}%3==0
     proc 3 only
  else if ${SessionNumber}%2==0
     proc 2 only
  else  
     proc 1 only
to

Code:
  /* EQ1 is unstable with multiple CPUs. This will rotate the affinity between four cores */
  if ${SessionNumber}%2==0
     proc 2 only
  else  
     proc 1 only
Reply With Quote Multi-Quote This Message
  #5   Add to htw's Reputation   Report Post  
Old December 13th, 2008
htw's Avatar
htw htw is offline
Strip Club Entrepreneur
 
Join Date: Aug 2006
Location: Albuquerque, NM
Posts: 3,844
Rep Power: 10
htw has disabled reputation
Send a message via AIM to htw Send a message via MSN to htw Send a message via Skype™ to htw
Quote:
Originally Posted by cudacuf View Post
I dont have a quadcore. I'm just running a dualcore. So, can I change

Code:
  /* EQ1 is unstable with multiple CPUs. This will rotate the affinity between four cores */
  if ${SessionNumber}%4==0
     proc 4 only
  else if ${SessionNumber}%3==0
     proc 3 only
  else if ${SessionNumber}%2==0
     proc 2 only
  else  
     proc 1 only
to

Code:
  /* EQ1 is unstable with multiple CPUs. This will rotate the affinity between four cores */
  if ${SessionNumber}%2==0
     proc 2 only
  else  
     proc 1 only
Yep, sure can. :-)

htw
__________________
Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour.

Click here to donate to htw

Reply With Quote Multi-Quote This Message
Reply

Tags
None



Currently Active Users Viewing This Thread: 1 (1 members and 0 guests)
cupofjo

Posting Rules
You may post new threads
You may post replies
You may post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Forum Jump


All times are GMT -6. The time now is 11:51 PM.

Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0 RC7
© 2004 - 2008 MMOBugs.com