|
Axe Software Forums
Quest Developer Forum help!
|
Author | Topic: help! |
Gwerradon |
posted 27-05-2003 13:56 BST
When i start the game in questnet, the Team Selection procedure keeps repeating itselg rapidly.... somebody please check my code to see what's wrong.... This is the First part.... ' "Capture the Flag" define game <Capture the Flag> ------------------------------------------ This is the Procedure... define procedure <Team Selection> thanks. |
I think Im Back |
posted 27-05-2003 16:35 BST
This answer applies to the demo I made in another post as well. Coding things for QuestNet and coding things for Quest have a few drastic differences. The main difference is a lot of things aren't yet implemented in QuestNet, this is what is causing your problem. QuestNet doesn't support the "enter <thisvariable>" piece of code, that's one of your problems here. The other is that there is no start room. The procedure isn't necessary, and also you should set numeric's in the server start script which is coded as just... "startscript { blah blah blah }" ... Otherwise everytime a player joins it would reset the scores which is kind of pointless. ' "Capture the Flag" define game <Capture the Flag>
player startscript { end define define room <start> |
I think Im Back |
posted 27-05-2003 16:37 BST
That's still a shoddy piece of code and there are a million ways to do it better, but it works. It doesn't actually make the player a team member, because you hadn't put anything to do that in there. This would require player properties, and I've explained them to you before, don't feel like doing it again. Next time I won't post code I'll just explain what to do and let you figure it out. I tire of fixing one persons work over and over again. |
Gwerradon |
posted 27-05-2003 19:08 BST
poor you. i bet you feel like a one man customer support service. lol. but thanks ;) |