Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Bomy Island Main Forum (https://forums.graalonline.com/forums/forumdisplay.php?f=80)
-   -   Graal2001 (Scripts) (https://forums.graalonline.com/forums/showthread.php?t=575)

Dark-Wys 03-25-2001 11:10 PM

I am working on a new area for Graal2001!
It will have have bomy races and possibly a new CTF.
That all depends on one thing though! Can someone possibly send me the scripts for CTF and the Gully race?

Thx,
DarkWyz

Nai 03-25-2001 11:15 PM

No.

FatherDante 03-25-2001 11:31 PM

Probably the only people who have those are Stefan, GodSpeed, and Drakaden.

Dark-Wys 03-26-2001 03:44 AM

Do u think they would share it?

Psyker 03-26-2001 03:54 AM

Most likely not... well, I dunno.
But Krakken has the CTF scripts, as he made it.

deetto 03-26-2001 03:58 AM

originality isnt a factor anymore? ctf sucks, cs sucks (in graal). races are getting old. etc.

Lycia 03-26-2001 05:04 AM

Script it yourself.

Dark-Wys 03-26-2001 05:39 AM

1 I a pretty bad sripter but I guess I'll figure it out! The thing is, how do u get scripts to run from level to level. Like the timer for the Gully race?

FatherDante 03-26-2001 05:41 AM

He can't script it himself, nobody can. Nobody knows the new commands or how to do server scripting anymore.

Even Tyhm probably would have trouble with this new Overworld-NPCs. :\

Tyhm 03-26-2001 05:55 AM

Yeah, overworld blows my mind.

I have the CTF (Graal Castle version) scripts still. Pretty simple, really.

Lycia 03-26-2001 06:02 AM

Quote:

Originally posted by FatherDante
He can't script it himself, nobody can. Nobody knows the new commands or how to do server scripting anymore.

Even Tyhm probably would have trouble with this new Overworld-NPCs. :\

WTF?

Classic has an overworlds NPC?

FatherDante 03-26-2001 06:12 AM

No, classic doesn't have an NPC server. If it did, Tyhm would have mastered it by now. ;)

Dark-Wys 03-26-2001 06:47 AM

is there anyway to learn this script?

Lycia 03-26-2001 06:48 AM

I think an NPC server on Classic would drop the lag considerably.

Crono Illusion 03-26-2001 07:45 AM

However, to have an NPC Server, wouldn't that require it to be a Pay server?

FatherDante 03-26-2001 08:02 AM

Learn the script? That's easy: Work for cyberjouer.

Lycia 03-26-2001 09:05 AM

Quote:

Originally posted by Crono Illusion
However, to have an NPC Server, wouldn't that require it to be a Pay server?
No, because ToT isn't pay.

vergil 03-26-2001 09:07 AM

hm havent players made the CS arenas before why dont you just make the stuff and tell Stefan to add the scripts and such in when your done ?

FatherDante 03-26-2001 10:57 AM

That's what's always done. You always need stefan's help for the levels on 2001. It's just the way things work. Kind of cuts out player scripting. :\

Lycia 03-26-2001 10:58 AM

Quote:

Originally posted by FatherDante
That's what's always done. You always need stefan's help for the levels on 2001. It's just the way things work. Kind of cuts out player scripting. :\
Stefan needs an NPC scripting team.

FatherDante 03-26-2001 10:59 AM

He can do it so much better than anyone else, it seems as though he doesn't need one.

SSmutz 03-26-2001 10:59 AM

i try to script whatever i can do myself the best i can before i send cavern updates to Stefan, and if theres anything i cant figure out, ill ask him to do it =/

grim_squeaker_x 03-26-2001 07:12 PM

Quote:

Originally posted by Lycia


No, because ToT isn't pay.

Actually ToT is ogng to be pay but as it is still heavily under construction they give a chance for every player to see with their own eyes what you can do with oeverworld-npcs (As long as it doesn't mind control people ;)).

And as for server stuff for non-pay servers try this:
NPC Code:
setstring server.string,value;


Any strings with server. in front of them will make them global (Or well that used to be the case but I'm assuming that that still works.), and otherwise you can always just make the levels and then ask Stefan if he wants to add the scripts.

Dark-Wys 03-27-2001 07:18 AM

k, sounds like an idea, guess thats what I'll do

FatherDante 03-27-2001 07:21 AM

To my knowledge Stefan scripted everything on the 2001 server except for GodSpeed's spar rooms...

Lycia 03-27-2001 08:35 AM

Quote:

Originally posted by FatherDante
To my knowledge Stefan scripted everything on the 2001 server except for GodSpeed's spar rooms...
Stefan's a work-a-holic. :-\

He needs to take a break.

Pago 03-27-2001 09:16 AM

First he needs to upload Cow Quest, then take a vacation :D

Go to Atlantis, then tell me what it's like... heh

FxChiP 03-27-2001 09:22 AM

Here's a nice script for that purpose..
 
This should work, I read one of the new newfeatures.txts...

So here it goes!

Let's say it's a horse-racing script for NORMAL horses.

Make one NPC (Race Coordinator or something) like this:

if (playertouchsme && playeronhorse) {
set HorseTimerApproved;
}

Then:

if (HorseRaceApproved) {
toweapons -HorseTimer;
timereverywhere;
timeout=.1;
}

if (timeout) {
if (FxLapsRun < 3) {
this.FxTimer+=.1;
timeout=.1;
}
else {destroy;}
}

And a script to detect the laps and add to the Lap counter

if (playertouchsme) {
dontblock;
drawoverplayer;
FxLapsRun+=1;
if (FxLapsRun == 3) {
hide;
}
}

I've heard that the new server doesn't like timeouts, though... hopefully, the timeout loop will work.

There should be a way to set variables only locally. But that script should work for G2K1.

Behind the toweapons -HorseTimer info: I read the newfeatures, and it said that putting a - before the weapon name will hide it from the weapons list.

Should work.

FatherDante 03-27-2001 11:09 AM

Stefan's not a workaholic, he's a business owner. He's responsible for all the work he does. Heck, he also owns a video game company. That's like every kids dream job!

Tyhm 03-27-2001 11:16 AM

Don't you mean Stephane (with an accent somewhere)?
Unixmad owns Cyberjoueur, Stefan writes Graal...

FatherDante 03-27-2001 11:17 AM

I thought they were joint holders of the company?

Tyhm 03-27-2001 11:22 AM

Are they?
Wow, that'd be spiffy...
I always figured Stefan was the genius programmer and the Stephane was the fiancial wizard who backed him...

FatherDante 03-27-2001 11:24 AM

I guess I'll just have to ask him. I now am completely confused.

But I don't think Unixmad has much money, so...


All times are GMT +2. The time now is 04:26 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.