plusN.cfg | 2.4

328 replies [Last post]
¯¯__█ALI█¯¯__
xpaliminium's picture
Offline
Joined: Nov 2005
Posts:
plusN.cfg | current -> 2.2

yep droping has no sens anymore for powerups or armor cos you have them still after each round Happy

Except if ppl will use it to share them with teammate (on fws/cws) that's to meditate Tongue

Wanna avoid seeying mow, skull & co Surprise

Check this peacefull place

animalchik
fala.q3's picture
Offline
Joined: Jul 2009
Posts:
plusN.cfg | current -> 2.2
.DA|BEAST. wrote:

Give to monkey a blade and he will cut his own throat instead of shave, sad, disabled in the near future

I am addicted to life.

mow Q [EN]
Offline
Joined: Nov 2003
Posts:
plusN.cfg | current -> 2.2

Other question, why a monkey should have the motivation to shave? He does not suffer from it.

animalchik
fala.q3's picture
Offline
Joined: Jul 2009
Posts:
plusN.cfg | current -> 2.2
Laktos wrote:

What about switchtimes, feels like extremly fast switch!

have no idea Winking

Before in beta6 when u switched from rg to mg, lg, pg u was forced to wait ~100ms, althought the time was set by the cfg to 0ms delay. This bug was removed in rc1 and that now might feel that switching is drastically speed up, and now rg -> mg, lg, pg has completely no delay, to all other weapons times was increased by 100ms but still there is no delayed fire after the switch! Of course that depends on xp_weaponStyle

mow Q [EN] wrote:

Other question, why a monkey should have the motivation to shave? He does not suffer from it.

hmm probably I didn't understand, but if I did then u didn't Happy or only take the example to serious Winking if that think about some e+ humanoids as they were in stone age. I do remember mine child years and that i put into mine nose vitamins Winking

I am addicted to life.

¯¯__█ALI█¯¯__
xpaliminium's picture
Offline
Joined: Nov 2005
Posts:
plusN.cfg | current -> 2.2

I wanted to notify you this some time ago, but haven't found time to check all before. now this :

case "q3dm7":
[code:1]modifyitem(1, "ITEM_ARMOR_COMBAT", "ITEM_HEALTH", "1", "1");[/code:1]

case "q3dm11":
[code:1]modifyitem(1, "WEAPON_ROCKETLAUNCHER", "ITEM_HEALTH_SMALL", "1", "1");
modifyitem(1, "WEAPON_SHOTGUN", "ITEM_HEALTH_SMALL", "1", "1");[/code:1]

case "q3dm15":
[code:1]modifyitem(1, "ITEM_ENVIRO", "ITEM_HEALTH_SMALL", "1", "1");[/code:1]

case "q3dm18":
[code:1]modifyitem(1, "WEAPON_ROCKETLAUNCHER", "ITEM_HEALTH_SMALL", "1", "1");[/code:1]

case "q3tourney5":
[code:1]modifyitem(1, "ITEM_ARMOR_COMBAT", "ITEM_HEALTH", "1", "1");[/code:1]

case "cpm9":
[code:1]modifyitem(1, "WEAPON_RAILGUN", "ITEM_ARMOR_BODY", "", "1", "1");[/code:1]

values have to be fixed for those items. And we need to add entries for new maps in beer rotation.

I hope for the next version, you will use sub-folder called plusN or include
and use something like :
[code:1]include("plusN/items.cfg");
include("plusN/weapons.cfg");[/code:1]
And remember pls that I need those included files for rebounceN except weapons.cfg Arrow lets make them common between us Happy

and for $location in map as items have changed place Happy we should make .ents files and edit target_location so it makes sens that new red armor location is called red, bs for battlesuit etc Winking

Wanna avoid seeying mow, skull & co Surprise

Check this peacefull place

lagstard
Developer (retired)
rabusmar's picture
Offline
Joined: Jan 2008
Posts:
plusN.cfg | current -> 2.2

I would like to request you to add support for PTL (Protect the Leader) gametype. Right now it sucks because there is no reward for becoming a leader, you will have gauntlet and can only hide and wait to be killed, so maybe you could allow all normal weapons and also add leader powerups (bs, or quad and regen could be good choices imo) so it now makes more sense to become the leader.

That way PTL may become a better gametype and could be played more often, and bugs within this gametype can be spotted and fixed faster (honestly havent even taken the time to search for bugs).

Había una vez un barco chiquito...

animalchik
fala.q3's picture
Offline
Joined: Jul 2009
Posts:
plusN.cfg | current -> 2.2

UPDATE DOWNLOAD HERE

2:13 :
- removed feature - armor dropping
- fix - fixed items amount and times
__________________________________________ update 16:10 09.10.2009

@Beast, I'm not interested in this gametype at all, maybe someone willing to put his work under this?

I am addicted to life.

rUnThEoN?!
Skullheadq3's picture
Offline
Joined: Dec 2005
Posts:
DE Germany
plusN.cfg | current -> 2.2

the leader must have a disadvantage otherwise u wouldnt need to protect im.

btw, remove xp_freezestyle? bugz0red.

hurrenson: "This idiot is apparently not familiar with a rail/sniper style."

¯¯__█ALI█¯¯__
xpaliminium's picture
Offline
Joined: Nov 2005
Posts:
plusN.cfg | current -> 2.2
animalchik wrote:

@Beast, I'm not interested in this gametype at all, maybe someone willing to put his work under this?

I can help as always, just tell me how you want PTL so I make code and give it to fala to upgrade.

And yes this code sounds strange :
[code:1]if ($xp_freezeStyle == 2) {
Items = IT_NONE;
}
else if ($xp_freezeStyle == 3 && $g_gametype != 7) {
include("N.ho.cfg");
}
else if ($g_gametype != 7) {
include("N.mapitems.cfg");
}
[/code:1]

better code :
[code:1]if ($xp_freezeStyle == Innocent {
//put code here
}
if ($xp_freezeStyle == 1) {
//put code here
}
else if ($xp_freezeStyle == 2) {
//put code here
}
else if ($xp_freezeStyle == 3) {
//put code here
}
else
//put code here
}[/code:1]

or even better :
[code:1]switch ( $xp_freezeStyle ) {
case "0":
//put code here
break;
case "1":
//put code here
break;
case "2":
//put code here
break;
case "3":
//put code here
break;
default:
//put code here
}[/code:1]

with that you can have clear code.

Edit :
forgot ! pls add feature xp_noAntiCamp (default : Innocent : we need it in CTF and in some rare maps and maybe elsewhere.

Wanna avoid seeying mow, skull & co Surprise

Check this peacefull place

lagstard
Developer (retired)
rabusmar's picture
Offline
Joined: Jan 2008
Posts:
plusN.cfg | current -> 2.2
rUnThEoN?! wrote:

the leader must have a disadvantage otherwise u wouldnt need to protect im.

Even with powerups he will be in disadvantage, the disadvantage is that if he gets killed his team will lose a point.

Anyway, i just tested this gametype yesterday and its very bugged, we found like 5 bugs in just a single game played.

rUnThEoN?! wrote:

btw, remove xp_freezestyle? bugz0red.

Are you referring to the mod or gameplay? If first case report the bugs.

Había una vez un barco chiquito...