Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Edwin Xie

#201
Sadly, I have been busy these days and had no time to notify you.
#202
Bump, so you can you can use any number you want for xx as long as it is available? I'm doing this for a textbox GUI that turns on debug options if you type in the correct series of characters so I just use SetGlobalInt for that? All I want to know now is what (GetGlobalInt(xx)==1) means.

Edit: There was a parse error PE04 at &&
Edit2: The problem is that && statements happen only when it is enclosed in parenthesis. EX. if (something && somethingelse){
//code here
}
In this case it would be
if((keycode==xxx)&&(GetGlobalInt(xx)==1)[/red]){
Debug(x);
}
(with the ones in red not needed)
Oops, oh well, at least that is what I expected. Hmm, strange........why am I ther person telling while the other person should do that job?

#203
General Discussion / Re: Best free webhosting
Sun 03/10/2004 02:33:39
Yeah... I applied for it but they had to deny the application. Strict people. I guess no-one can get a free domain name. Even if there are sites that say free domain names, you still have to pay for it. Wierd. Maybe try www.netfirms.com
#204
Is there any way you can compress this game any further? I would love to play the game but I got a slow modem.... :(
Edit: Great game, I downloaded.... it took one hour and some minutes.
Edit2: What's the problem here?:
---------------------------
Illegal exception
---------------------------
An exception 0xC0000005 occured in ACWIN.EXE at EIP = 0x004C4C0C ; program pointer is +1099, ACI version 2.60.698, gtags (0,9)

AGS cannot continue, this exception was fatal. Please note down the numbers above, remember what you were doing at the time and notify CJ on the Tech forum.

(Global script line 50)


Most versions of Windows allow you to press Ctrl+C now to copy this entire message to the clipboard for easy reporting.
---------------------------
OK   
---------------------------

It happened when I clicked on some kind of snake or that pig thing.
#205
That script seems quite confusing, can you give and example and an explanation?
#206
Ok....thanks...............now I need to know about the debug script (A.K.A. Bump)
#207
Bah, I have this issue. It happens every time I start the game the first time in the session. But I usually go, meh. It looks like the outside of the window with what I am doing frozen in the middle.
#208
1. T'is an issue that has been bothering me lately. I wonder if I can change the Setup file of the game's icon. I know how to change the game's.....I couldn't find this in the manual and earlier I couldn't find anything that is related to this topic in the forum. So.....any ideas? I know there is a possibility since I saw an example in Equilibrum by JudasFan. Thanks LostTraveler for solving this problem........

2. Ok, another problem, I want to know how to turn off and turn on debug options in script. Is it possible?
#209
Quote from: Albert Cuandero on Thu 30/09/2004 19:59:56
Are you using a fixed IP-Adress or a dynamic one?

Anyway I would recommend a firewall. XP comes with one alread, you can look up on the µ$ homepage how to activate it.

The µ$ homepage? I think my IP constantly changes (since I am using a modem).
#210
Sigh, even though I read about 80% of this thread including CJ admitting that it was a hoax, why do people still play along after 2 pages of angryness to CJ. I don't get it. :-\ And I was not embarrassing myself, I don't feel embarrassed...*Hides the :-[ expression on Edwin's face....
#211
General Discussion / Re: Something to laugh at
Thu 30/09/2004 06:15:20
Meh, I think PhotoPlus 5.5 is better, it's free and it can do good effects in my opinion (Man, why did I had to remove my copy of Photoshop? *Sigh*). I wonder if someone can lend me a copy of photoshop. Unless it's over 10MB. Jasc paint shop pro seems nice too but the trial is HUGE! Sigh, now this links me to other things, my slow 28.8 (or 56) K internet can't even download 14.6 MB in less than 1 hour.
#212
Now here is a wierd and cool thing about Spybot S&D, I reinstalled it since it got me again and I had to format my hard drive and then recover the files on it. It had the optional files, SD Resident and Teatimer..... they both completely stopped those ads, I don't have the ad problems anymore and now SD Resident blacklisted 1,173 processes (which I bet are those mailicious ad-bots!). But I am worried that they might take over my computer in some way.
#213
Bump
I really need a bacckground artist (since I am always busy these days) that could draw the style I posted. To keep this game in production, I added some essential things like the death interactions. I know, I am expecting a lot more work done on this project. I can't really go into the stickies and ask for help there. The "Offering your Services" topic doesn't help me, there are a lot of background artists here in the forums and only a few of them posted in that topic. No one really cares about the "Looking for Help?" topic so that isn't really good for me. *Sigh* I guess I'll keep on working on the scripts I need for the game.
#214
Wierd that you can't see Manannan's eyes in VGA format, his eyes look like the were pasted from the old beta :-\ . The enly part where it does not look VGA is the intro. About how he gotten to this area and stuff but I guess his dreams were also not put into VGA format. You might need a very experienced VGA artist (maybe you couldn't find the images from iron_man?).
#215
AHH! They got me again!!!!!And I mean the adbots. :(
#216
 :'( Is he serious about this? This scheme has been going on for months. Wait, why'd you post this here? It said it was urgent.....
#217
Hehe, Conan the Barbarian/Xena Warrior Princess and a dash of Monkey Island. I get a vibe telling this will be a good game.

Edit: Hmm, the quest seems easy.....just need to get the feather.
EDIT2: Ehh, this game seems quite easy. If anyone needs help on this here is a short walkthorugh....Or am I going to ruin it for you guys?
#218
Ok, once when I had to implement the status bar, I used this script:

if (GetCursorMode()==0) SetLabelText(0,0,"Walk to @OVERHOTSPOT@");
if (GetCursorMode()==1) SetLabelText(0,0,"Look at @OVERHOTSPOT@");
if (GetCursorMode()==2) SetLabelText(0,0,"Interact with @OVERHOTSPOT@");
if (GetCursorMode()==3) SetLabelText(0,0,"Talk to @OVERHOTSPOT@");
if (GetCursorMode()==4) {
string usinginv;
string useinvtxt;
StrCopy (useinvtxt, "Use ");
GetInvName(character[GetPlayerCharacter()].activeinv,usinginv);
StrCat (useinvtxt,usinginv);
StrCat (useinvtxt," with ");
StrCat (useinvtxt,"@OVERHOTSPOT@");
SetLabelText(0,0,useinvtxt);
}
}

The game said it didn't work when I used this.

Here is the script that worked:

if (GetCursorMode()==0) SetLabelText(0,0,"Walk to @OVERHOTSPOT@");
if (GetCursorMode()==1) SetLabelText(0,0,"Look at @OVERHOTSPOT@");
if (GetCursorMode()==2) SetLabelText(0,0,"Interact with @OVERHOTSPOT@");
if (GetCursorMode()==3) SetLabelText(0,0,"Talk to @OVERHOTSPOT@");
if (GetCursorMode()==4) {
string usinginv;
string useinvtxt;
StrCopy (useinvtxt, "Use ");
GetInvName(character[GetPlayerCharacter()].activeinv,usinginv);
StrCat (useinvtxt,usinginv);
StrCat (useinvtxt," with ");
StrCat (useinvtxt,"@OVERHOTSPOT@");
SetLabelText(0,0,useinvtxt);
}
}

Anything different with the script? Probably not. Wierd.
#219
Heh, I wouldn't say it publically if I were you. Hmm, I didn't know that I posted the 200th post here.....
#220
General Discussion / Re: Emoticon Upgrade?
Mon 27/09/2004 01:58:04
AHH!! Don't show "o_O"! It scares me and makes me remember the time I had a mosquito bite on 1 eyelid and then I have 1 eye slightly bigger. I agree with QuantumRich, it should have 1 eye slightly bigger (so I can't notice the difference of the two eyes).....Sorry if I uh, anger or make someone laugh (I feel embarrased about the above story :-[ ).
SMF spam blocked by CleanTalk