Graal Forums  

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

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: Falcor
Forum: NPC Scripting 03-30-2007, 04:50 AM
Replies: 99
Views: 11,095
Posted By Falcor
Real coders just do it however they like it then...

Real coders just do it however they like it then run their code through a beautifier when they are done ;)

see emacs/vim
Forum: Tech Support 03-29-2007, 01:30 AM
Replies: 17
Views: 1,799
Posted By Falcor
Of course they are. Why would windows castrate...

Of course they are. Why would windows castrate themselves by putting 32-bit built-in programs on their 64-bit OS platform?

The problem is third party software and seeing the benefits of...
Forum: NPC Scripting 03-27-2007, 08:10 AM
Replies: 5
Views: 1,376
Posted By Falcor
You are essentially asking if you can apply...

You are essentially asking if you can apply elementary techniques for mechanics that you learned in high-school to gscript objects. Of course you can.

Unless you are talking about graal having a...
Forum: Tech Support 03-26-2007, 12:42 AM
Replies: 17
Views: 1,799
Posted By Falcor
The reality is that, right now, 64-Bit OS is more...

The reality is that, right now, 64-Bit OS is more or less like the unstable branch of any OSS. Its got the latest features, but is largely unsupported and is not production-ready. The only 64-Bit...
Forum: Tech Support 03-25-2007, 05:42 AM
Replies: 17
Views: 1,799
Posted By Falcor
You seriously have an attitude problem. Do you...

You seriously have an attitude problem. Do you think if you sound angry that people will be more inclined to help you? Thats false logic my friend, so next time you ask for help, don't start crying...
Forum: Tech Support 03-25-2007, 05:38 AM
Replies: 16
Views: 2,084
Posted By Falcor
Alright, well then in the next version, I'll...

Alright, well then in the next version, I'll print out the debug-info I get so that this bug can be solved. Thanks anyway.
Forum: Tech Support 03-20-2007, 05:53 AM
Replies: 16
Views: 2,084
Posted By Falcor
Changing my bit depth from 24 to 16 didn't make...

Changing my bit depth from 24 to 16 didn't make it work, however I have a new error now.

Direct Rendering is enabled, Graal should run smoothly.
Processor Init:
Intel (unknown, Pentium...
Forum: NPC Scripting 03-20-2007, 05:38 AM
Replies: 7
Views: 1,249
Posted By Falcor
I didn't test it, but something like this should...

I didn't test it, but something like this should work.


//#CLIENTSIDE
function onPlayerChats()
{
temp.radius = 3;
temp.phi = 0;

if (player.chat.starts("/putpoly"))
Forum: Tech Support 03-19-2007, 05:24 AM
Replies: 335
Views: 44,937
Posted By Falcor
I still use XP. If the security features have to...

I still use XP. If the security features have to be disabled for me to do anything, then why bother upgrading?
Forum: Tech Support 03-19-2007, 05:10 AM
Replies: 335
Views: 44,937
Posted By Falcor
Productivity? I find it very hard to be...

Productivity? I find it very hard to be productive when every action I make is assaulted by UAC's Cancel/Allow dialogs.
Forum: Tech Support 03-19-2007, 05:05 AM
Replies: 16
Views: 2,084
Posted By Falcor
It actually was already on false, I switched it...

It actually was already on false, I switched it to true just so I could see what the change would be, however it again didn't affect the situation.

One thing I did notice is that the 'Illegal...
Forum: Tech Support 03-18-2007, 07:33 AM
Replies: 16
Views: 2,084
Posted By Falcor
Tried the intel one. the change made my mouse...

Tried the intel one. the change made my mouse cursor invisible, and graal still won't run (Same errors)
Forum: Future Improvements 03-18-2007, 01:05 AM
Replies: 36
Views: 2,667
Posted By Falcor
Install Aspell. Spell checking should be done by...

Install Aspell. Spell checking should be done by the poster, not the server.
Forum: Tech Support 03-18-2007, 12:16 AM
Replies: 16
Views: 2,084
Posted By Falcor
Thank you. I have a lot of options to tweak...

Thank you. I have a lot of options to tweak ,but it seems that the ones I suspected don't do anything. I changed the window mode resolutions, however, they still didn't fix the segmentation fault.
Forum: Tech Support 03-18-2007, 12:07 AM
Replies: 16
Views: 2,084
Posted By Falcor
Nope, no files there. If you have some config...

Nope, no files there. If you have some config file I can have maybe I'll try tweaking the options.
Forum: Tech Support 03-18-2007, 12:03 AM
Replies: 16
Views: 2,084
Posted By Falcor
Unfortunately, Graal doesn't write a skeleton...

Unfortunately, Graal doesn't write a skeleton config file or anything, so I don't know where or which options I can edit. I doubt it has anything to do with DRI being enabled. Plus I have Edgy on...
Forum: Tech Support 03-17-2007, 11:45 PM
Replies: 16
Views: 2,084
Posted By Falcor
Can't Start Graal (Ubuntu Edgy)

I've been having problems starting Graal on my Laptop. Hopefully I can give enough information for this report to be useful.

Running 'graal' I get this message

libGL warning: 3D driver claims...
Forum: New Scripting Engine (GS2) 01-23-2007, 01:52 AM
Replies: 5
Views: 1,539
Posted By Falcor
You sacrifice code clarity for a few less...

You sacrifice code clarity for a few less characters. if(condition) this; else that; makes more sense than (condition? this : that) when you glance at your code. You shouldn't have to comment code...
Forum: NPC Scripting 01-23-2007, 01:47 AM
Replies: 40
Views: 3,929
Posted By Falcor
Its probably because the highlighting template...

Its probably because the highlighting template was taken from Java or something. Why re-invent the wheel right?
Forum: New Scripting Engine (GS2) 01-23-2007, 01:21 AM
Replies: 5
Views: 1,539
Posted By Falcor
I recommend you don't use the ternary operator...

I recommend you don't use the ternary operator for anything aside from simple substitutions. eg... (x>1? 0 : 1)
Its a very bad programming practice to use it as flow-control. It's not intended for...
Forum: NPC Scripting 01-11-2007, 12:13 AM
Replies: 7
Views: 1,215
Posted By Falcor
Try this alternate code, it seems to work better...

Try this alternate code, it seems to work better for some reason:


//#CLIENTSIDE
function onPlayerEnters() {
this.red = 0;
this.green = 0;
this.blue = .5;
this.alpha = .5;
this.wd...
Forum: New Scripting Engine (GS2) 01-11-2007, 12:02 AM
Replies: 7
Views: 1,581
Posted By Falcor
He means, put a script in a gani to show the HP...

He means, put a script in a gani to show the HP bar, but only show the images when the mouse is over the player.. EG



...

function update_bar() { ...some code to draw the HP Bars... }...
Forum: NPC Scripting 01-10-2007, 12:15 AM
Replies: 7
Views: 1,215
Posted By Falcor
No, But you could simulate it with a big white...

No, But you could simulate it with a big white image, and color it accordingly. Then use transparency mode (mode = 1 I believe).


//Serverside
function onCreated() {
...
Forum: NPC Scripting 01-04-2007, 07:32 AM
Replies: 82
Views: 13,622
Posted By Falcor
Finally a wiki that isn't a wanna-be wikipedia...

Finally a wiki that isn't a wanna-be wikipedia for Graal! I welcome this effort, and if I find something to add, I'll add it. I was thinking of doing this, but I'm glad someone has more patience...
Forum: New Scripting Engine (GS2) 01-01-2007, 08:17 AM
Replies: 2
Views: 1,271
Posted By Falcor
I suppose it would be useful to know the minimum...

I suppose it would be useful to know the minimum amount of attributes one needs to specify for an emitter to emit particles. If both of those code blocks follow that rule, then both of the emitters...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +2. The time now is 06:36 PM.


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