Graal Forums  

Go Back   Graal Forums > Development Forums > Future Improvements
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #41  
Old 08-19-2002, 03:31 AM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
Right, except that it's not.

The code exists, it's just disabled...

My primary gripe is that Graal is a good engine, but there's that damn 28k (or whatever) per NPCW limit. Even on G2K2 they were constantly trying to keep the inventory from exploding. I mean, I got ideas for stuff to do with the Graal engine post-retirement, but if I gotta make every level < 50k, < 50 NPCs, and every NPC < 28k, it's not gonna work.

I mean, take Tyne's old shooter, Darius or Arius or whatever. The obviously copyrighted one. It didn't use any of the Graal hallmarks - hearts, movement, baddies, whatever - but that code was still there, taking up space and cycles.

Ideally, the engine would be stripped down, and every server would be given a publically available General System NPCW, which is invisible on all accounts (it'd be a toweapons -; or something), can be edited however...and it handles all the movement, damage, baddies, map, inventory, whatever, everything that G2K2 had to disable. Then if you don't want anyone using the default movement, you just overwrite that part of the NPC. Or remove it altogether and have your other NPC handle it. Spar rating? All that stuff, poof. Wanna make a classic server? Just use the default. Wanna make a shooter? Totally rewrite the default. No excess code.

But I'm probably overreacting, it can't be that much of a slowdown in the grand scheme of things.
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #42  
Old 08-19-2002, 01:27 PM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally posted by Tyhm
Right, except that it's not.

The code exists, it's just disabled...
Still, the point is that you can't do anything with putbomb. It's disabled in that the server ignores messages from the client saying that it just laid a bomb. You can't use it to affect other players.

Quote:
My primary gripe is that Graal is a good engine, but there's that damn 28k (or whatever) per NPCW limit. Even on G2K2 they were constantly trying to keep the inventory from exploding. I mean, I got ideas for stuff to do with the Graal engine post-retirement, but if I gotta make every level < 50k, < 50 NPCs, and every NPC < 28k, it's not gonna work.
Hmm. I wonder if it's possible to construct bigger NPCWs by combining classes like I was doing on Oasis. I never got around to testing if it allowed more size.

Quote:
Ideally, the engine would be stripped down, and every server would be given a publically available General System NPCW, which is invisible on all accounts (it'd be a toweapons -; or something), can be edited however...and it handles all the movement, damage, baddies, map, inventory, whatever, everything that G2K2 had to disable. Then if you don't want anyone using the default movement, you just overwrite that part of the NPC. Or remove it altogether and have your other NPC handle it. Spar rating? All that stuff, poof. Wanna make a classic server? Just use the default. Wanna make a shooter? Totally rewrite the default. No excess code.
Sounds okay, but I'd rather just have access to some basic protocols on the server. For example, by default a sword hit could be sent via UDP message index 0, so I could write code on some base server script that says:

if(messageindex==0){
do_my_special_damage_stuff;
}

The clientside slowdown from the redundant code is negligible anyway - the only compelling reason for doing what you suggest is to prevent cheaters invoking code that is meant to be disabled. And by implementing the system above, where every event (meaning every event, even things like client.strings being set from the client) is processed in a redefinable way by the server, that can be avoided. Because cheaters are only a nuisance if their actions reach the other players.
__________________
Reply With Quote
  #43  
Old 08-19-2002, 02:55 PM
magicbud3344 magicbud3344 is offline
Banned
Join Date: Mar 2002
Location: mEEP
Posts: 0
magicbud3344 is on a distinguished road
Send a message via AIM to magicbud3344
Quote:
Originally posted by Kaimetsu

Because cheaters are only a nuisance if their actions reach the other players.
i disagree i think that giving yourself money is a nuisance but if you mean that cheaters are only a nuisance if what they do AFFECTS other people them yes
Reply With Quote
  #44  
Old 08-19-2002, 03:35 PM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally posted by magicbud3344

i disagree i think that giving yourself money is a nuisance but if you mean that cheaters are only a nuisance if what they do AFFECTS other people them yes
I said "reaches", which does imply "affects".
__________________
Reply With Quote
  #45  
Old 08-19-2002, 08:14 PM
screen_name screen_name is offline
is watching you
Join Date: Mar 2002
Location: The 3rd Dimension
Posts: 2,160
screen_name is on a distinguished road
Send a message via AIM to screen_name Send a message via MSN to screen_name
Quote:
Originally posted by Tyhm
Right, except that it's not.

The code exists, it's just disabled...

My primary gripe is that Graal is a good engine, but there's that damn 28k (or whatever) per NPCW limit. Even on G2K2 they were constantly trying to keep the inventory from exploding. I mean, I got ideas for stuff to do with the Graal engine post-retirement, but if I gotta make every level < 50k, < 50 NPCs, and every NPC < 28k, it's not gonna work.

I mean, take Tyne's old shooter, Darius or Arius or whatever. The obviously copyrighted one. It didn't use any of the Graal hallmarks - hearts, movement, baddies, whatever - but that code was still there, taking up space and cycles.

Ideally, the engine would be stripped down, and every server would be given a publically available General System NPCW, which is invisible on all accounts (it'd be a toweapons -; or something), can be edited however...and it handles all the movement, damage, baddies, map, inventory, whatever, everything that G2K2 had to disable. Then if you don't want anyone using the default movement, you just overwrite that part of the NPC. Or remove it altogether and have your other NPC handle it. Spar rating? All that stuff, poof. Wanna make a classic server? Just use the default. Wanna make a shooter? Totally rewrite the default. No excess code.

But I'm probably overreacting, it can't be that much of a slowdown in the grand scheme of things.
I like the Gneral System NPCW. This should be done.

<<Stefan>>
__________________
[signature]insert here[/signature]
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 09:39 PM.


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