Search found 31 matches

by Jon100
Thu Sep 04, 2008 4:58 am
Forum: GamingTools Members::WinEQ 2.0 Pro
Topic: Saving EQ memory
Replies: 0
Views: 3246

Saving EQ memory

I'm trying to find ways to save memory when running 6 (or sometimes more) copies of EQ on one box using WinEQ2. With my current config each session is taking roughly 600-650MB, which adds up fast! Bloat from recent expansions means I can't run as many sessions as I used to on the same hardware :( I'...
by Jon100
Tue Jul 29, 2008 2:25 am
Forum: GamingTools Members::Inner Space
Topic: Timstamp problem
Replies: 2
Views: 2086

Thanks Lax :)
by Jon100
Mon Jul 28, 2008 5:44 am
Forum: GamingTools Members::Inner Space
Topic: Timstamp problem
Replies: 2
Views: 2086

Timstamp problem

I'm getting a wierd bug in some of my code, in which I am setting a bailout timer (the time to stop doing something). Depending on which way I set it I can get up to a minute's difference in time, which I can't explain. In the example below bailout is being set to now + 5mins. Using the Inc[300] met...
by Jon100
Fri Jul 18, 2008 4:26 am
Forum: GamingTools Members::Inner Space
Topic: deleting sub directories
Replies: 0
Views: 2320

deleting sub directories

Does anyone have a neater way in LavishScript of deleting a directory, that contains subdirectories and files, than this code please? OSexecute cmd /c "rmdir /s/q c:\\mydirectorytree" I don't like having to use cmd.exe as it flashes up a window, is slow, and might change in future. Does it work on V...
by Jon100
Mon Jul 07, 2008 9:59 am
Forum: GamingTools Members::Inner Space
Topic: Math.Rand caps at 32767
Replies: 0
Views: 2407

Math.Rand caps at 32767

According to the wiki Rand should return an int, but Math.Rand never returns a number over 32767.

echo ${Math.Rand[100000]}
by Jon100
Mon Jul 07, 2008 9:51 am
Forum: GamingTools Members::Inner Space
Topic: Problem with LastWriteTime
Replies: 2
Views: 2196

Does anyone have any ideas please?
by Jon100
Mon Jun 30, 2008 7:29 am
Forum: GamingTools Members::Inner Space
Topic: Problem with LastWriteTime
Replies: 2
Views: 2196

Problem with LastWriteTime

In the example below Filename and Size work, but LastWriteTime, CreationTime and LastAccessTime don't. Am I accessing the int64ptr incorrectly or is this a bug? function main() { consoleclear declare myFileList filelist myFileList:GetFiles["c://somefile.txt"] echo "File name = ${myFileList.File[1].F...
by Jon100
Mon Jun 30, 2008 2:53 am
Forum: GamingTools Members::Inner Space
Topic: WinEQ and IS don't play nice
Replies: 2
Views: 2158

I also had some strange memory issues with EQ1. It would typically use 500-600MB per session, but when you minimise them each session dropped to about 50MB before slowly climbing back up to around 200MB over several minutes. I don't know why.
by Jon100
Mon Jun 30, 2008 2:49 am
Forum: GamingTools Members::Inner Space
Topic: Autostarting a game profile
Replies: 1
Views: 1715

You can make a shortcut on your desktop for the game by doig the following: Right click on the IS tool tray icon. Select Configuration. Select the game configuration tab. Select your game in the top box. Select your profile in the bottom box. Press Make shortcut. When you click the icon on your desk...
by Jon100
Sat Jun 28, 2008 4:33 am
Forum: GamingTools Members::Inner Space
Topic: Will IS2 run LS?
Replies: 1
Views: 1676

Will IS2 run LS?

Inner Space 2 is planned to support Inner Space 1 applications through a compatibility layer, though technologies like (e.g.) LavishScript and LavishGUI will otherwise be excluded from Inner Space 2 in favor of more agnostic or standard technologies. So InnerSpace2 won't run LavishScript at all? Ou...
by Jon100
Thu Jun 05, 2008 11:17 am
Forum: GamingTools Members::Inner Space
Topic: Feature req: filepath support for Uniform Naming Convention
Replies: 2
Views: 2093

wtf?! I swear it wasn't working last week! Now my code is working fine! :roll:

I'd accuse you of a sneak patch if I didnt know better :) Thanks Lax


Bug #1028 fixed.... 2176 left to find...
by Jon100
Thu Jun 05, 2008 4:34 am
Forum: GamingTools Members::Inner Space
Topic: Feature req: filepath support for Uniform Naming Convention
Replies: 2
Views: 2093

Feature req: filepath support for Uniform Naming Convention

Rather than:

Code: Select all

 declare FP filepath "x:/my_config_directory/"
where x:/ is a mapped network resource, could we have support for UNC resorces such as

Code: Select all

declare FP filepath "//computer01/my_config_directory/"
please?

I realise this isn't urgent, but it would be nice.
by Jon100
Fri May 30, 2008 11:12 am
Forum: GamingTools Members::Inner Space
Topic: bug with & in xml settings
Replies: 2
Views: 1959

Ok :) Thanks Lax.
by Jon100
Fri May 30, 2008 9:38 am
Forum: GamingTools Members::Inner Space
Topic: bug with & in xml settings
Replies: 2
Views: 1959

bug with & in xml settings

I think there is a bug in how IS/LS handles settings that contain an Ampersand (&) symbol. function main() { declare myString string script "${SettingXML[myXMLfile.xml].Set[mySet].GetString[myString].Escape}" echo "${myString}" } <?xml version='1.0' encoding='UT...
by Jon100
Tue May 13, 2008 1:40 pm
Forum: GamingTools Members::Inner Space
Topic: Sending events from sessions to uplink
Replies: 10
Views: 4618

Clueless guys like me faint at winsocks API calls. Thanks guys :)