Graal Forums  

Go Back   Graal Forums > Search Forums
FAQ Members List Calendar Today's Posts

Showing results 1 to 25 of 25
Search took 0.00 seconds.
Search: Posts Made By: Bravo_NPC-Admin1
Forum: Future Improvements 06-07-2001, 08:40 AM
Replies: 7
Views: 1,349
Posted By Bravo_NPC-Admin1
What do you mean both exist? Explain and show...

What do you mean both exist? Explain and show some commands...
Forum: NPC Scripting 06-06-2001, 09:59 AM
Replies: 3
Views: 3,043
Posted By Bravo_NPC-Admin1
if (playerchats && strequals(#c,Boots on)) { ...

if (playerchats && strequals(#c,Boots on)) {
timeout=.05;
}
if (playerchats && strequals(#c,boots off)) {
timeout=0;
}
if (playerchats && startswith(#c,bootspeed)) {
tokenize #c;
...
Forum: NPC Scripting 06-06-2001, 07:25 AM
Replies: 3
Views: 2,454
Posted By Bravo_NPC-Admin1
Also...

Tokenize breaks up a string into sections, or tokens. Take this string for example:
Tokenize this string for me

If you call tokenize with this string, it would create:
#t(0)=tokenize...
Forum: NPC Scripting 06-03-2001, 07:33 AM
Replies: 2
Views: 2,506
Posted By Bravo_NPC-Admin1
MAP stuff

How do I get a map to download from the server? I have tried lots of things. Do I upload it into a special directory??? I know that downloading maps from servers is possible, because the Kingdom...
Forum: NPC Server 06-03-2001, 07:27 AM
Replies: 16
Views: 465
Posted By Bravo_NPC-Admin1
I don't know

I don't know
Forum: NPC Server 06-03-2001, 03:34 AM
Replies: 16
Views: 465
Posted By Bravo_NPC-Admin1
You forgot disconnect player. =P

You forgot disconnect player. =P
Forum: Tech Support 06-02-2001, 09:54 AM
Replies: 10
Views: 2,112
Posted By Bravo_NPC-Admin1
I know that error. It mainly happened in...

I know that error. It mainly happened in Graal2001 v2.02. If you loaded an offline level from the Graal2001 server (or some others), that message would pop-up.
Forum: Tech Support 06-01-2001, 12:09 PM
Replies: 6
Views: 2,132
Posted By Bravo_NPC-Admin1
Unhappy Problem is NPC variables

I modifed my code:

// NPC made by Boco
if (playerenters) {
test=1;
this.test=1;
level.test=1;
client.test=1;
server.test=1;
//If return's 1, then it works. If 0, then brokey
Forum: Tech Support 05-31-2001, 10:43 PM
Replies: 6
Views: 2,132
Posted By Bravo_NPC-Admin1
Troubles with #v()

I think the #v() command is broken. In proof, try this code:

// NPC made by Boco
if (playerenters) {
this.Count=5;
say2 The count is #v(this.Count);
}

Normally, a sign would pop-up...
Forum: NPC Server 05-31-2001, 09:47 PM
Replies: 2
Views: 531
Posted By Bravo_NPC-Admin1
OH CRAP! I forgot I had breaks in there....... ...

OH CRAP! I forgot I had breaks in there....... This is a rough draft of the final script. I will shorten it...eventually =P
Forum: NPC Server 05-31-2001, 07:40 AM
Replies: 2
Views: 531
Posted By Bravo_NPC-Admin1
I need help with a script...

Here is a script I did last night:

// NPC made by Boco
if (created || playerenters) {
setimgpart bravo_riverpan.gif,0,0,32,32;
}
if (playertouchsme) {
toweapons River Pan;
setimgpart...
Forum: NPC Server 05-30-2001, 01:08 PM
Replies: 17
Views: 560
Posted By Bravo_NPC-Admin1
Try: warpto <levelname>,<x>,<y>; canwarp...

Try:
warpto <levelname>,<x>,<y>;

canwarp just allows the NPC to warp.
Forum: NPC Server 05-30-2001, 08:09 AM
Replies: 2
Views: 324
Posted By Bravo_NPC-Admin1
Cool level.variables

How exactly do level.variables work? I am looking over my code, and I think I have a ::rough:: outline on how they work. Can any one help me on this one?
Forum: NPC Server 05-29-2001, 09:33 AM
Replies: 2
Views: 264
Posted By Bravo_NPC-Admin1
Cool Ok. Also, I am having trouble with...

Ok. Also, I am having trouble with this.variables. In my person, this is his code:
// Graal2001 NPC by Stefan Knorr
if (created) {
// Initialize the attributes
showcharacter;
setcharprop...
Forum: NPC Server 05-28-2001, 05:55 AM
Replies: 2
Views: 264
Posted By Bravo_NPC-Admin1
Cool Scripting Help

Ok. I need some help with some NPCs I made. I am making a bug-catching system, and I need some help because it won't work online..... It composes of a bottle, net, and butterfly's. This is my...
Forum: NPC Scripting 05-27-2001, 03:48 AM
Replies: 4
Views: 2,337
Posted By Bravo_NPC-Admin1
Thanks! ^_^

Thanks! ^_^
Forum: NPC Scripting 05-26-2001, 12:21 PM
Replies: 4
Views: 2,337
Posted By Bravo_NPC-Admin1
: and ?

Can someone tell me what the commands : and ? do? I have seen them in codes and they aren't documented (pretty sure).
Here is an example from a code I have:

this.speed = (this.size==1? 1 :...
Forum: NPC Server 05-26-2001, 08:23 AM
Replies: 3
Views: 168
Posted By Bravo_NPC-Admin1
It's the npcserver. Bravo Online's signs lag too.

It's the npcserver. Bravo Online's signs lag too.
Forum: NPC Server 05-23-2001, 09:46 AM
Replies: 7
Views: 202
Posted By Bravo_NPC-Admin1
Nope =( The NPC server is special, and...

Nope =( The NPC server is special, and implements commands that cannot be used while offline. That is why it is hard to test npcserver npcs. :(
Forum: NPC Server 05-23-2001, 06:13 AM
Replies: 4
Views: 623
Posted By Bravo_NPC-Admin1
Unhappy Well, ok. But, Stefan, in my script I set: ...

Well, ok. But, Stefan, in my script I set:

this.BugCount=9;

A couple lines down, I did this:

say2 You only have #v(this.BugCount) bugs.;

Normally, you would get a textbox saying:
You...
Forum: NPC Server 05-22-2001, 10:17 AM
Replies: 4
Views: 623
Posted By Bravo_NPC-Admin1
Cool Some.......stuff

Hello. I got more stuff to talk about. Since I can NEVER get a hold of Stefan, I will post everything here.

First of all, can someone explain when to use //#CLIENTSIDE in a script for me? I...
Forum: NPC Server 05-19-2001, 09:57 AM
Replies: 17
Views: 897
Posted By Bravo_NPC-Admin1
Cool Undocumented Commands

Stefan. I found some undocumented commands that aren't explained anywhere. The first one I can think of at the top of my head is onwall2 and onwater2 (?). What are those and how are they used? ...
Forum: NPC Server 05-17-2001, 11:49 PM
Replies: 8
Views: 528
Posted By Bravo_NPC-Admin1
Thumbs down =/ I am actually really good, but I have never...

=/ I am actually really good, but I have never used NPC Server yet and I am TRYING to learn how to use it. So, please cooperate with me and keep your evil comments to yourself:mad:
Forum: NPC Server 05-15-2001, 10:57 AM
Replies: 8
Views: 528
Posted By Bravo_NPC-Admin1
Will the NPC Control tell you all about the NPC...

Will the NPC Control tell you all about the NPC Server scripting style? With all the loops and conditionals that go along with it? Or will you create a separate text file explaining that?:confused:
Forum: NPC Server 05-15-2001, 05:26 AM
Replies: 8
Views: 528
Posted By Bravo_NPC-Admin1
Cool NPC Commands and such

:cool: Hey :cool:
My name is Boco, and I am the Head NPC Admin for Bravo Online! I was wondering if Stefan posted the npc server commands yet, like he said he would. I am trying to learn the NPC...
Showing results 1 to 25 of 25

 
Forum Jump

All times are GMT +2. The time now is 05:32 AM.


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