Xonotic Forums
Xoylent - Printable Version

+- Xonotic Forums (https://forums.xonotic.org)
+-- Forum: Creating & Contributing (https://forums.xonotic.org/forumdisplay.php?fid=10)
+--- Forum: Xonotic - Map Releases & Reviews (https://forums.xonotic.org/forumdisplay.php?fid=13)
+--- Thread: Xoylent (/showthread.php?tid=1657)

Pages: 1 2 3


RE: Xoylent - Halogene - 03-22-2011

Yes, that's as far as I have come - but NOW I think I know the password. Darn, it's so obvious now, I gotta go test it first thing tonight. Thanks sev. Now I wish I wouldn't have needed that help though.Blush


RE: Xoylent - Mirio - 03-22-2011

For everyone who can't find the Easter Egg I made a video, which shows how to get there and what to do is in the describtion.

SPOILER ALERT

http://www.youtube.com/watch?v=B7yuq53X4IQ


RE: Xoylent - unfa - 03-22-2011

DIZ MUP LUKS OSOME!!!


RE: Xoylent - nowego4 - 03-22-2011

Nicely done on the sounds and easter egg, all very professional.

For next release I suggest putting Tuba on asteroid Big Grin


RE: Xoylent - node357 - 03-31-2011

Thank you. I'm always on the outside looking in and couldn't handle it anymore


RE: Xoylent - kuniu the frogg - 04-02-2011

rock the asteroid!


RE: Xoylent - FruitieX - 04-03-2011

(04-02-2011, 12:38 PM)kuniu the frogg Wrote: rock the asteroid!

Haha, awesome screenshot! Big Grin

This should be on the front page Big Grin


RE: Xoylent - rainerzufalldererste - 04-03-2011

(04-03-2011, 05:29 AM)FruitieX Wrote: This should be on the front page Big Grin

+1


RE: Xoylent - nowego4 - 04-20-2011

Ok, so multiple people have mentioned that the map is black unless it is loaded manually (and I have confirmed this). Is this a map issue, a server issue, or a dlcache issue?
...

This map will be included default eventually, right? I mean, if G-23 got in (which is fine, it's a good enough map) then this one should too!


RE: Xoylent - Cortez666 - 04-20-2011

(04-20-2011, 03:15 PM)nowego4 Wrote: Is this a map issue, a server issue, or a dlcache issue?

server side issue, ask the admin to check the urls.


RE: Xoylent - Halogene - 03-16-2012

I resurrect this thread (because this is where my post actually belongs). Almost everyone may know that I love this map very much, and I think its gameplay is one of the best, also for duel game mode. I have to admit, though, and others will agree, that the placement of spawn points is a problem on this map. Personally I don't do spawn fragging because I feel a player that just spawned is sorta helpless towards a mg/nex combo and therefore it is not really fun to do that, but in competitive gameplay this can of course really ruin an otherwise interesting match. I would like to see Xoylent in any competitive map pool, because the gameplay is actually really good if it wasn't for the spawn frag runs. The pushing off the map enables a player to break control rather easily, which allows for more interesting strategies imho, such as actually trying to use the weapons for pushing rather than for damaging (I KNOW THIS DRIVES SOME OF U CRAZY BUT IT'S FUN).

This is why I kindly request the spawn points to be reworked on this map. They should be placed so that you cannot really attack 3 or more of them from one place. IMHO you could place a spawn point on the outer side of the pathway to the mega health and one even on the top of the map. Maybe even put a weapon or a small health pickup up there :o) Generally I think you should be able to get to a gun quickly from a spawnpoint.

A more sophisticated system would be to implement a dynamic spawn procedure where you automatically spawn at a location that cannot be attacked from the opponent's position, that could fix similar issues on other maps but would of course mean coding effort rather than just moving some spawn points.


RE: Xoylent - Mr. Bougo - 03-16-2012

There actually is a spawnpoint weighted selection system, that selects a random spawnpoint with minimal distance to any player as a weight. That's what g_spawn_furthest does, and it can be easily adjusted in code because div rocks.
From cl_client.qc, current git:
Code:
entity Spawn_WeightedPoint(entity firstspot, float lower, float upper, float exponent)
{
        // weight of a point: bound(lower, mindisttoplayer, upper)^exponent
        // multiplied by spot.cnt (useful if you distribute many spawnpoints in a small area)
        entity spot;

        RandomSelection_Init();
        for(spot = firstspot; spot; spot = spot.chain)
                RandomSelection_Add(spot, 0, string_null, pow(bound(lower, spot.spawnpoint_score_y, upper), exponent) * spot.cnt, (spot.spawnpoint_score_y >= lower) * 0.5 + spot.spawnpoint_score_x);

        return RandomSelection_chosen_ent;
}

Currently, a random number between 0 and 1 is selected and compared with g_spawnfurthest. If the random number is smaller it gives more weight to the furthest spawn points, otherwise it selects uniformly:
Code:
if (random() > autocvar_g_spawn_furthest)
                        spot = Spawn_WeightedPoint(firstspot, 1, 1, 1);
                else
                        spot = Spawn_WeightedPoint(firstspot, 1, 5000, 5); // chooses a far far away spawnpoint

This is of course not sniper-proof, but I'm not sure what you could do about that in an elegant way. There's no easy way to know what a player "sees", and tracing a line between the player's shot origin and the spawn point can be circumvented by hiding, not even far from the spawn point.


RE: Xoylent - hutty - 03-16-2012

... the real problem is the map is just too small for protected spawning ... the roof could work .... but its kinda strange... I also wouldn't put one on the mega health path because that is so close to the edge ... It would be easy to accidentally walk off when spawning


RE: Xoylent - Tanya (prophets) - 03-16-2012

spawnprotection could avoid that problem. in my opinion, the spawnpoints are well placed around the map. especially for minsta duel, but also for ffa dm. so don't change it.


RE: Xoylent - kojn^ - 03-16-2012

Always found spawn protection annoying in 1on1 and I'm sure it won't be used in normal weapons competitive duels. Spawns will always be an issue with the map anyway, changing spawns isn't going to change the fact it's still a space map halogene Smile although if you think they can be improved fair enough.


RE: Xoylent - kuniu the frogg - 03-16-2012

changing spawnpoints it's kind of pointless anyway, people will learn it quickly and with such small and connective map, it will be the same after some time


RE: Xoylent - Rage_ATWM - 03-16-2012

A nooby question: why using a pre-defined discrete set of spawnpoints (as opposed to any random spot in the map, or any random spot in the neighborhood of a pre-defined discrete set of spawnpoints)?
Does it come from some technical aspects, or is it more, let's say, philosophical?


RE: Xoylent - Cortez666 - 03-16-2012

(03-16-2012, 01:18 PM)kuniu the frogg Wrote: changing spawnpoints it's kind of pointless anyway, people will learn it quickly and with such small and connective map, it will be the same after some time

another option would to add like 30-40 spawnpoints, but nevertheless the problem of the size remains. You are too fast at another point of the map.


RE: Xoylent - Tanya (prophets) - 03-19-2012

okay. i played some minsta duels on xoylent. and i noticed a disturbing noise. as we have to listen to all the sounds in minsta duel, that noise in the background is really annoying. that's why we revived soylent...


RE: Xoylent - CuBe0wL - 03-19-2012

You can disable that ingame background noise in the audio menu "ambient" sounds. Tongue


RE: Xoylent - Halogene - 03-19-2012

(03-16-2012, 01:12 PM)kojn^ Wrote: Always found spawn protection annoying in 1on1 and I'm sure it won't be used in normal weapons competitive duels. Spawns will always be an issue with the map anyway, changing spawns isn't going to change the fact it's still a space map halogene Smile although if you think they can be improved fair enough.

Might be, but the position up at crylink is too powerful for spawn frags as of now, at least that's how I feel. You could easily change that by a) moving the spawn point that's down the stairs from there around the corner so you face the mega health, or b) add additional spawn points like for example one more at mg facing the other one, one at rocket launcher, one at mega health...

The fact that it is a space map doesn't make Xoylent unsuitable for duels per se, in that respect I really would like you to accept pushing people off a map as a valid game play technique.


RE: Xoylent - Tanya (prophets) - 03-19-2012

(03-19-2012, 02:50 AM)C.Brutail Wrote: You can disable that ingame background noise in the audio menu "ambient" sounds. Tongue
oh, thanks for the hint...but are you sure, that no other important sounds are missing when disabling ambient?


RE: Xoylent - Halogene - 03-19-2012

Tanya: I am sure, yes :o)