General Thread |
by Aardappel
on 01/05/2002 01:55, 15527 messages, last message: 03/01/2024 13:02, 12524194 views, last view: 11/01/2024 23:28 |
|
for questions, announcements etc.
|
|
Board Index
|
|
#10596: Re: sauerbraten anti-cheats ? |
by Mr.Piddly 00000001
on 06/01/2008 02:00, refers to #10595
|
|
Players can always just modify the maps to give themselves huge advantages. You cannot add extra items, but players can capture bases from inside walls or add jumppads everywhere.
Since this is really easy, I think it is more widespread than editing the source.
reply to this message
|
|
#10597: switches/doors/triggers |
by Somerandom17
on 06/01/2008 05:08
|
|
I cant seem to figure out how to make a switch trigger a door to open can anyone help me with this problem?
reply to this message
|
|
#10598: .. |
by ACCESS-GRANTED
on 06/01/2008 06:15
|
|
you can't online triggers don't work online on in sp :(
reply to this message
|
|
#10599: Re: switches/doors/triggers |
by MeatROme
on 06/01/2008 11:15, refers to #10597
|
|
As "Access-Granted" said : triggers only work in SP (singleplayer) .. not MP (multiplayer).
If you need some help on setting them up - try "/sp door_demo" and check out what the entities are rigged up like via edittoggle and inspection of the door-mapmodels attributes and the trigger attributes ... reading the manual along-side to make sense of the numbers ;-)
see docs/editref.html and look into all the bits about triggers/mmodel (mapmodels).
HTH
reply to this message
|
|
#10600: sauerbraten server mod |
by Linux Fan
on 06/01/2008 13:56
|
|
Hi there!
I searched Google, but can`t find anything that i could add to my server to see the health of all players connected to my server. I thing this will be a good start point for anti-cheat campaign, because i`m sick of them.
The question is - how to make the health points appear over the head of everyone connected? Is it possible to make the same for the armor and ammos?
Thanks in advice!
reply to this message
|
|
#10601: Re: sauerbraten server mod |
by MeatROme
on 06/01/2008 18:13, refers to #10600
|
|
One thing came to mind straight-away:
You would need to keep track of all changes to other players stats .. e.g. currently pickup() only handles player1 .. make it work for player[n] too .. that's client-side though.
Same goes for pain/damage functions and ... well anything that's done to the player1-fpsent.
Server changes might be required too .. but that'd make your MOD completely incompatible with vanilla sauerbraten.
I'd suggest you try to keep it client-side for starters - publish it on quadropolis (at least a node linking to whatever CVS/SVN/?? you're gonna be using) and see what feedback you get :)
reply to this message
|
|
#10602: Re: sauerbraten server mod |
by SheeEttin
on 06/01/2008 18:22, refers to #10601
|
|
Well... Is health not handled sever-side?
I think his intention is to oversee his server, rather than display everyone's health in-game to everyone.
If health is server-side, I think it'd be trivial to check everyone's health and put it somewhere you could look at it (e.g. stdout).
reply to this message
|
|
#10603: Scripted NPC characters in Sauerbraten? |
by WolfR
on 06/01/2008 20:25
|
|
I spent the last weeks experimenting with this incredible game development system (my sincerest admiration to Wouter!) and tried to learn as much as possible. I made a couple of test maps and some models; I also investigated the script language.
There seem to be a lot of possibilities and many things you can do with this engine. However, what I am really missing is the opportunity to include some scripted NPCs (with or without AI) - not just "dumb" monsters. As soon as you want to make a bit more than just "shoot-em-ups" (nothing wrong with that, of course) you really need some interaction with characters and/or mapmodels.
Maybe I have overlooked something obvious? Can something like this be done? (Seems an important feature to me, and I wonder why it isn't implemented!)
I realize that RPGs will be implemented in Eisenstern - however this project is still in its very eraly stages.
Has anybody got some ideas?
reply to this message
|
|
#10604: Re: sauerbraten server mod |
by MeatROme
on 06/02/2008 04:02, refers to #10602
|
|
Yes & No :)
Of course there's been a lot more involvement with the server - deciding on health & ammo etc.
But the effect he described (display of health above the head) would "simply" (hehe) require for the client to be aware of the other players health (and/or other stats) at all times.
This is something which isn't currently done in the code ... as I already said - the pickup()-issue was only the first thing that came to mind (because I recently worked on that) - there are quite a number of other places one would have to fix up to allow for all stats to be constantly up-to-date.
I'm not even trying to suggest it will be completely possible without modding the server-side too - but you can definitely come a long way toward the desired result by sticking to "plain" client-side modifications.
For example - the kill/damage/shoot messages (among others) often "bail out" when they find it's nothing to do with "cl.player1" but rather with "cl.players[x]" ... so those cases would have to be extended to also apply to non-local players (fpsent structures).
reply to this message
|
|
#10605: Re: Scripted NPC characters in Sauerbraten? |
by MeatROme
on 06/02/2008 04:09, refers to #10603
|
|
Sorry to say, but there's no AI interactivity implemented in the FPS game .. and AFAIK there never will be.
The singleplayer side of sauerbraten has always been sadly neglected (IMHO) .. well - apart from MitaMan's spectacular episodes! :)
You will have to wait for the RPG to mature some more; I'm sure we will get enough control over NPCs in the end!
reply to this message
|
|
#10606: DDS texture and DXTC support.. |
by pioj
on 06/02/2008 22:30
|
|
Hi! I'm trying to add support for DDS texture format, just to improve visual quality of Sauer..
First of all, I'm gonna add the loader within SDL Image part of the source, ok?
Is this project already dead, or are you guys still working on it?
reply to this message
|
|
#10607: Re: DDS texture and DXTC support.. |
by jbuk2k7s cookie has gone
on 06/02/2008 23:16, refers to #10606
|
|
How is using DDS going to improve visual quality? We already have support for PNG and can increase texture resolution almost limitlessly (although it is a bit costly).
reply to this message
|
|
#10608: Opening sequence |
by Linuxguy.Marshall
on 06/03/2008 00:22
|
|
I want there to be a movie (if not a movie then a couple splash screens) then a Start menu. How might I do that?
reply to this message
|
|
#10609: Animated Character |
by Zizaco
on 06/03/2008 15:42
|
|
How can i export a fully animated character from 3D studio max 9.0 to Sauerbraten?
How can i export to md3 from max 9?
Is there a fully support for md5 characters in sauerbraten?
Thanks
reply to this message
|
|
#10610: Re: Scripted NPC characters in Sauerbraten? |
by rknigh21
on 06/03/2008 20:11, refers to #10603
|
|
Hi
You can use the aiclip material to restrict the movements of monsters, and provided they have room to move around that makes them seem quite a bit more “intelligent”, especially with carfull map layout ( see my game the DAM which is a large outdoor sp game see http://www.quadropolis.us/node/1264
).
You can bind a key to launch a menu that is scripted in the cfg file. Also mapmodels can trigger functions in the cfg that do various things. Like start a platform/elevator moving, open doors, pickups, open a menu, etc. These can be combined to allow the player some interaction with the game world.
Platforms (carrying monsters) and teleports can be combined to make a neat monster machine that drops monsters into the players current area.
This takes a bit of work in cube script.
I am working on a map combining all these effects if anyone is interested I will put a demo on quodropolis.
Regards Robin
reply to this message
|
|
#10611: Re: Scripted NPC characters in Sauerbraten? |
by rknigh21
on 06/03/2008 23:39, refers to #10603
|
|
Hi
You can use the aiclip material to restrict the movements of monsters, and provided they have room to move around that makes them seem quite a bit more “intelligent”, especially with carfull map layout ( see my game the DAM which is a large outdoor sp game see http://www.quadropolis.us/node/1264
).
You can bind a key to launch a menu that is scripted in the cfg file. Also mapmodels can trigger functions in the cfg that do various things. Like start a platform/elevator moving, open doors, pickups, open a menu, etc. These can be combined to allow the player some interaction with the game world.
Platforms (carrying monsters) and teleports can be combined to make a neat monster machine that drops monsters into the players current area.
This takes a bit of work in cube script.
I am working on a map combining all these effects if anyone is interested I will put a demo on quodropolis.
Regards Robin
reply to this message
|
|
#10612: Sauerbraten is stuck in Fullscreen! |
by Shale
on 06/04/2008 02:47
|
|
I want to make Sauer windowed.
I uncheck the FS option in the menu.
It tells me I need to use /t.
So I type /t.
Nothing happens.
Any suggestions?
reply to this message
|
|
#10613: Re: Sauerbraten is stuck in Fullscreen! |
by Hirato Kirata
on 06/04/2008 03:18, refers to #10612
|
|
it's far more like to say -t, and that's what you're meant to use when you start it up.
I'm assuming you're on windows, so jsut go to the sauerbraten directory and open the start up script with notepad, and add a -t in there somewhere
still don't know what I'm talking about, then I'm not the one to help you.. but I think you'll find the situation is much improved in CVS, and definitely the next release
~Hirato Kirata
reply to this message
|
|
#10614: .. |
by princeoftheburb
on 06/04/2008 08:31
|
|
would i be able to use my xbox 360 controller to play?
reply to this message
|
|
#10615: Re: .. |
by tman_elite
on 06/04/2008 13:10, refers to #10614
|
|
I doubt you'd want to, because using a mouse to aim is a lot easier. I'm not sure if you can hook up xbox 360 controllers to your computer, but if you can I think there's a joystick mod on quadropolis.
reply to this message
|
|
|
Board Index
|
|