Search found 22 matches

by bountycode
Tue Mar 01, 2005 6:39 pm
Forum: GamingTools Members::Inner Space
Topic: do while
Replies: 2
Views: 2976

that did it thanks :)
by bountycode
Tue Mar 01, 2005 6:49 am
Forum: GamingTools Members::Inner Space
Topic: do while
Replies: 2
Views: 2976

do while

this code runs and gives me no errors but the while part does not seem to work

function main()
{
declare t int local 1
do
{
echo ${t}
varcalc t ${t}+1
}
while ${t}<=10
}

it displays the value being increase but it get to 10 and past 10 never stoping the do while loop
by bountycode
Wed Jan 05, 2005 4:00 pm
Forum: General Discussion
Topic: Windows can't see 4GB of memory
Replies: 4
Views: 18755

Seems that SP2 breaks windows ability to see 4GB of ram. Lax is there any way to get around this "fix"? disable PAE mode? As far as I understand it you should only need PAE mode if you have more then 4GB of ram. Servers at work here have 8GB of ram and they need the /PAE option added to the boot.ini...
by bountycode
Fri Dec 31, 2004 2:51 pm
Forum: GamingTools Members::Inner Space
Topic: .56 version varcalc not working
Replies: 2
Views: 3255

.56 version varcalc not working

using this code from the tutorial Let's see how to display the numbers 1 through 10 in the console: function main() { declare count int 1 do { echo ${count} varcalc count ${count}+1 } while ${count}<11 } this worked fine until version .56 of IS now the exact code not changed gives me this error unpa...
by bountycode
Thu Dec 23, 2004 1:40 pm
Forum: General Discussion
Topic: Windows can't see 4GB of memory
Replies: 4
Views: 18755

Windows can't see 4GB of memory

Ok I’ve googled this problem now for the last 2 days and couldn’t find an answer to this so I’m posting this here for some help. I bought a Abit AV8 motherboard and 4*1GB dims of memory. I’ve ran memtest86 on the memory and it checks out great. The Bios boot up screen shows me that I have 4GB of mem...
by bountycode
Wed Dec 15, 2004 5:06 pm
Forum: GamingTools Members::Inner Space
Topic: profile for notepad
Replies: 4
Views: 4206

thanks for the quick responce :)
just wondering, since you cannot see a console window in notepad how did you send the "press" and "type" commands since they are not part of the main program?
by bountycode
Wed Dec 15, 2004 1:28 pm
Forum: GamingTools Members::Inner Space
Topic: profile for notepad
Replies: 4
Views: 4206

profile for notepad

Ok, I'm trying to test some scripts but RunScript does not run in the main IS console so I was wondering how to I create and run a profile for say notepad.exe? I tried adding a test profile and setting the profile path to c:\windows\system32\notepad.exe but that does not seem to be working. what I'v...