Author |
Message |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 06/21/2005 22:22:05
|
Deunan
Dominating
Joined: 06/07/2005 21:19:19
Messages: 206
Offline
|
Hi,
is anybody else other than gordon and I having issues with adrenal drip not working. on some maps it works. Others it doesn't. A couple of maps when i use any vampiric weapon i notice it doesn't work. is this normal. because if so, i don't think adrenal drip is worth having.
any input is useful
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 06/22/2005 18:57:39
|
Deunan
Dominating
Joined: 06/07/2005 21:19:19
Messages: 206
Offline
|
not working again, 6/22 boom boom bridge.
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 06/22/2005 22:09:15
|
edomingox
Dominating
Joined: 05/22/2005 16:57:45
Messages: 247
Offline
|
i dont think it's the weapon that is causing it. if any weapon would cause it, i would guess it would be a draining or energy, but we have to test that out first. just keep a record of when it happens, time and map.
|
My character skin -
http://skincity.beyondunreal.com/?section=skins&action=show_infos&id=1513
or
http://www.utzone.de/include.php? path=content/download.php&contentid=4280
http://friends.GameFly.com/r/5c9eec123614102a919d
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 06/23/2005 15:44:55
|
JamesIX
Killing Spree
Joined: 03/13/2005 13:49:56
Messages: 42
Offline
|
yea sometimes is doesn't work. i've noticed in on several occasions
|
"I wish to wish the wish you wish to wish, but if you wish the wish the witch wishes, I won't wish the wish you wish to wish" |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 06/30/2005 16:22:59
|
edomingox
Dominating
Joined: 05/22/2005 16:57:45
Messages: 247
Offline
|
fyi. its because of the alt-fire on the redeemer. it doesnt happen on some maps but that is the cause if it ever stops. you have to die for it to restart. this info is referred in another post and also passed on to Mysterial. If Dru can do anything about it, then that would be great but it sounds like something in the RPG code itself that is causing it.
|
My character skin -
http://skincity.beyondunreal.com/?section=skins&action=show_infos&id=1513
or
http://www.utzone.de/include.php? path=content/download.php&contentid=4280
http://friends.GameFly.com/r/5c9eec123614102a919d
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/03/2005 23:45:43
|
TheDruidXpawX
Wicked Sick!
![[Avatar]](/dcforum/images/avatar/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg)
Joined: 12/19/2004 18:32:13
Messages: 1946
Offline
|
I can sometimes get it to reactivate by going the the magic weapon maker, or max magic modifier and trigger them (without enough adrenaline).
Not a great kludge, but it works
|
Skin download: http://www.disastrousconsequences.com/dcforum/posts/list/1189.page
The fundamental problem is this: The first word we learn as children is NO. From that point forward society teaches women that saying no isn't polite, and society teaches men to respect those who wont take no for an answer.
The world is what you make of it, my friend. If it doesn't fit, you make alterations. -- Stella, The Morning Star |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/03/2005 23:53:40
|
Nonya-Biz
Killing Spree
Joined: 06/05/2005 02:21:02
Messages: 59
Offline
|
it sounds like there is a if(controller==None) somewhere in the addrenalin drip code
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/03/2005 23:59:25
|
TheDruidXpawX
Wicked Sick!
![[Avatar]](/dcforum/images/avatar/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg)
Joined: 12/19/2004 18:32:13
Messages: 1946
Offline
|
Yup, although how it's triggering I cant imagine. In Ut2004RPG.AdrenRegenInv
Code:
function Timer()
{
local Controller C;
if (Instigator == None || Instigator.Health <= 0)
{
Destroy();
return;
}
C = Instigator.Controller;
if (C == None && Instigator.DrivenVehicle != None)
C = Instigator.DrivenVehicle.Controller;
if (C == None)
{
Destroy();
return;
}
if (!Instigator.InCurrentCombo() && !HasActiveArtifact())
{
C.AwardAdrenaline(RegenAmount);
}
}
Somehow when you're a nuke it must be checking the wrong thing.
Did someone say it's already been reported to Mysterial?
|
Skin download: http://www.disastrousconsequences.com/dcforum/posts/list/1189.page
The fundamental problem is this: The first word we learn as children is NO. From that point forward society teaches women that saying no isn't polite, and society teaches men to respect those who wont take no for an answer.
The world is what you make of it, my friend. If it doesn't fit, you make alterations. -- Stella, The Morning Star |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:01:54
|
Nonya-Biz
Killing Spree
Joined: 06/05/2005 02:21:02
Messages: 59
Offline
|
this is from the redeemer alt fire im not gonna copy and paste it all in here
Code:
if (Warhead != None)
{
Warhead.OldPawn = Instigator;
Warhead.PlaySound(FireSound);
Possessor = PlayerController(Instigator.Controller);
Possessor.bAltFire = 0;
if ( Possessor != None )
{
if ( Instigator.InCurrentCombo() )
Possessor.Adrenaline = 0;
Possessor.UnPossess();
Instigator.SetOwner(Possessor);
Instigator.PlayerReplicationInfo = Possessor.PlayerReplicationInfo;
Possessor.Possess(Warhead);
}
Warhead.Velocity = Warhead.AirSpeed * Vector(Warhead.Rotation);
Warhead.Acceleration = Warhead.Velocity;
WarHead.MyTeam = Possessor.PlayerReplicationInfo.Team;
}
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:09:59
|
TheDruidXpawX
Wicked Sick!
![[Avatar]](/dcforum/images/avatar/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg)
Joined: 12/19/2004 18:32:13
Messages: 1946
Offline
|
Maybe your health as a deemer is 0?
|
Skin download: http://www.disastrousconsequences.com/dcforum/posts/list/1189.page
The fundamental problem is this: The first word we learn as children is NO. From that point forward society teaches women that saying no isn't polite, and society teaches men to respect those who wont take no for an answer.
The world is what you make of it, my friend. If it doesn't fit, you make alterations. -- Stella, The Morning Star |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:14:29
|
Nonya-Biz
Killing Spree
Joined: 06/05/2005 02:21:02
Messages: 59
Offline
|
if its in the inventory of the "oldpawn" it wont have a controller just a motionless pawn out in the middle of nowhere like an out of body expirence as a nucular missile o.o
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:17:55
|
TheDruidXpawX
Wicked Sick!
![[Avatar]](/dcforum/images/avatar/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg)
Joined: 12/19/2004 18:32:13
Messages: 1946
Offline
|
But it doesn't remove the controller from the old pawn, so I'm guessing the reference would still be in place.
|
Skin download: http://www.disastrousconsequences.com/dcforum/posts/list/1189.page
The fundamental problem is this: The first word we learn as children is NO. From that point forward society teaches women that saying no isn't polite, and society teaches men to respect those who wont take no for an answer.
The world is what you make of it, my friend. If it doesn't fit, you make alterations. -- Stella, The Morning Star |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:20:50
|
Nonya-Biz
Killing Spree
Joined: 06/05/2005 02:21:02
Messages: 59
Offline
|
the "Possessor.UnPossess();" removes the controller from the pawn
Code:
PlayerReplicationInfo = None;
SetOwner(None);
Controller = None;
|
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/04/2005 00:28:11
|
TheDruidXpawX
Wicked Sick!
![[Avatar]](/dcforum/images/avatar/eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg)
Joined: 12/19/2004 18:32:13
Messages: 1946
Offline
|
Nonya-Biz wrote:
the "Possessor.UnPossess();" removes the controller from the pawn
Code:
PlayerReplicationInfo = None;
SetOwner(None);
Controller = None;
aaaa.
I guess I could fix this in DruidsRPG by overriding these classes... Maybe I'll contact Mysterial first and see if he's planning ot fix it soon.
|
Skin download: http://www.disastrousconsequences.com/dcforum/posts/list/1189.page
The fundamental problem is this: The first word we learn as children is NO. From that point forward society teaches women that saying no isn't polite, and society teaches men to respect those who wont take no for an answer.
The world is what you make of it, my friend. If it doesn't fit, you make alterations. -- Stella, The Morning Star |
|
 |
![[Post New]](/dcforum/templates/default/images/icon_minipost_new.gif) 07/07/2005 18:09:35
|
edomingox
Dominating
Joined: 05/22/2005 16:57:45
Messages: 247
Offline
|
TheDruidXpawX wrote:
Did someone say it's already been reported to Mysterial?
Yes, I pm'd them directly. they said they'll look into it. but i dont think they have this threads information.
|
My character skin -
http://skincity.beyondunreal.com/?section=skins&action=show_infos&id=1513
or
http://www.utzone.de/include.php? path=content/download.php&contentid=4280
http://friends.GameFly.com/r/5c9eec123614102a919d
|
|
 |
|