Graal Forums  

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

Showing results 1 to 25 of 30
Search took 0.00 seconds.
Search: Posts Made By: Arkan1k
Forum: NPC Scripting 07-07-2005, 06:10 AM
Replies: 5
Views: 1,074
Posted By Arkan1k
I'm guessing the only way this will happen is by...

I'm guessing the only way this will happen is by duplicating a node. As the nodes are all connected and we need one for the top height, and one for the lower height of the cliff. By adding another...
Forum: Birthday Forum 07-01-2005, 06:39 AM
Replies: 9
Views: 763
Posted By Arkan1k
Hey, sorry, I've just been terribly sick. Only...

Hey, sorry, I've just been terribly sick. Only been able to breathe about 1/10th than an average person can and my tonsils have been swollen to the size of golf balls for about 6 months.
Just had an...
Forum: Birthday Forum 06-26-2005, 08:41 AM
Replies: 9
Views: 763
Posted By Arkan1k
hehe This is a surprise! Thank you very much...

hehe
This is a surprise!
Thank you very much :)
Forum: NPC Scripting 02-17-2005, 12:27 AM
Replies: 37
Views: 3,864
Posted By Arkan1k
Just reference to other scripts. Play with their...

Just reference to other scripts. Play with their values. Then eventually start changing the Gui control type, playing with new commands.
If you come across any commands you don't understand, play...
Forum: NPC Scripting 02-13-2005, 05:39 AM
Replies: 38
Views: 2,734
Posted By Arkan1k
findweapon(str) - returns object I'd presume...

findweapon(str) - returns object

I'd presume you'd do something like:
if (findweapon(weaponname) == true) {
doStuff();
}

I haven't had a play with it, but I'd say from the name of the...
Forum: NPC Scripting 02-12-2005, 10:20 AM
Replies: 38
Views: 2,734
Posted By Arkan1k
You could probably just do this: i = 0; for...

You could probably just do this:
i = 0;
for (colour: player.colors) {
colours[i] = colour;
i++;
}
Forum: NPC Scripting 02-11-2005, 03:55 AM
Replies: 4
Views: 1,102
Posted By Arkan1k
I think it's now this: getstringkeys(str) -...

I think it's now this:
getstringkeys(str) - returns object
Forum: NPC Scripting 02-10-2005, 10:46 AM
Replies: 1
Views: 1,103
Posted By Arkan1k
gscript2: TShowImg()

More help, sorry. But I guess this is also helping for alot of other people.
I am trying to keep to using the main gscript2 functions so I don't need to use many gscript1 things. Even if they are...
Forum: NPC Scripting 02-09-2005, 10:54 AM
Replies: 5
Views: 1,131
Posted By Arkan1k
gscript2: requestText

I am currently trying to figure out ways that I can read from or save to a text file either on the server or the client's computer.
I have been experimenting with "requestText(str, str)" for a...
Forum: Tech Support 02-09-2005, 03:26 AM
Replies: 13
Views: 898
Posted By Arkan1k
Yes it's just the editor. As soon as I got access...

Yes it's just the editor. As soon as I got access to an NPC Server online, the problem was gone.
Forum: NPC Scripting 02-07-2005, 04:08 AM
Replies: 57
Views: 6,698
Posted By Arkan1k
Just make a button for it: function...

Just make a button for it:

function onCreated() {
new GuiButtonCtrl("OpenRC") {
profile = "GuiButtonProfile";
x = 10;
y = screenheight - 45;
width = 80;
height = 35;
...
Forum: Zone 02-02-2005, 03:31 PM
Replies: 30
Views: 2,283
Posted By Arkan1k
Yes I know, but I was. I could sense you saying...

Yes I know, but I was. I could sense you saying this as soon as I clicked on submit.
Forum: Zone 02-01-2005, 04:15 PM
Replies: 30
Views: 2,283
Posted By Arkan1k
You could just use the "0/Ins" on the numpad. ...

You could just use the "0/Ins" on the numpad.
As simple as moving your pinky finger across and holding it down.
I also like Kai's idea of locking onto a particular player. Then by pressing left or...
Forum: Tech Support 02-01-2005, 02:57 AM
Replies: 6
Views: 901
Posted By Arkan1k
gmap is "erynn-lake.gmap" on server...

gmap is "erynn-lake.gmap" on server "SSH"
Forum: Tech Support 01-31-2005, 07:48 PM
Replies: 6
Views: 901
Posted By Arkan1k
gmap crashing v3.x

Hi.
Okay, I have a gmap on a server, which works perfectly fine on 2.x but just causes v3.x to keep crashing as soon as the gmap is entered.
I have tried many things, making smaller gmaps, gmap...
Forum: Graal Main Forum (English) 01-30-2005, 05:52 AM
Replies: 14
Views: 1,174
Posted By Arkan1k
The floating point problem still remains on my...

The floating point problem still remains on my 2.3.1 client.
Can I get this double checked by anyone?
Just put this in a level and tell me if the zeros between the decimal point and the next number...
Forum: NPC Scripting 01-29-2005, 12:53 PM
Replies: 9
Views: 1,094
Posted By Arkan1k
Spot the difference: if (!x=40 && !y=23.5){ ...

Spot the difference:

if (!x=40 && !y=23.5){
set Carried;
}

if (x!=40 && y!=23.5){
set Carried;
}
Forum: Level Design 01-29-2005, 05:46 AM
Replies: 6
Views: 933
Posted By Arkan1k
That's the one! Thank you. :)

That's the one!
Thank you. :)
Forum: Level Design 01-28-2005, 03:36 PM
Replies: 6
Views: 933
Posted By Arkan1k
GK Snow Lake

I'm just wondering how you are able to raise the water level in a gmap. I think I've seen the command in an NW or GMAP file before but I just can't remember.
But there is a lake which I have seen on...
Forum: Tech Support 01-26-2005, 07:38 AM
Replies: 13
Views: 898
Posted By Arkan1k
In simple terms, it removes any zeros between the...

In simple terms, it removes any zeros between the decimal place and the next number higher than 0.

e.g.
0.005 becomes 0.5
13.00008 becomes 13.8
Forum: Tech Support 01-25-2005, 05:00 PM
Replies: 13
Views: 898
Posted By Arkan1k
Exclamation Floating Point Bug

I know in newfeatures you said you fixed something to do with the floating point so it works with the Kingdoms item sorting.
Now, in any script any zeros directly trailing the decimal point are...
Forum: Gani Construction 01-21-2005, 04:31 PM
Replies: 0
Views: 1,216
Posted By Arkan1k
cuttree/playeranistep

Can someone please explain to me how this gani works.
I notice that when online each time you cut the tree with the axe it steps up one frame in the animation.
But when I am offline, it seems that...
Forum: Level Design 01-03-2005, 06:36 AM
Replies: 36
Views: 1,950
Posted By Arkan1k
Why don't you just use a custom tileset? I...

Why don't you just use a custom tileset?
I played with the isometric perspective a while ago on Significance, and then also again offline with a new body and movement script.

I can't find the...
Forum: Playerworld Staff Openings 09-16-2004, 09:54 AM
Replies: 50
Views: 4,223
Posted By Arkan1k
I keep on changing minds about applying. Got...

I keep on changing minds about applying.
Got anything that'll sway my mind? Either way?
Forum: PlayerWorlds Main Forum 09-15-2004, 03:25 AM
Replies: 103
Views: 6,474
Posted By Arkan1k
1. Sandside Heights 2. Oasis

1. Sandside Heights
2. Oasis
Showing results 1 to 25 of 30

 
Forum Jump

All times are GMT +2. The time now is 05:28 PM.


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