Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help remove willy pete hitmarkers?
#1
hey i'm trying to remove hitmarkers on willypete"smoke" , dose anyone know how to do that ? i've found edited the _damagefeedback.gsc i could remove all tags but thats not what a want , so please if you know how let us know xD
Reply

#2
Code:
CodeCallback_PlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
{
self endon("disconnect");
if(isSubStr(sWeapon, "willy") || isSubStr(sWeapon, "smoke"))
iDamage = 0;
    [[level.callbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
}
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
Reply

#3
wow thanks , oh would that go in _callbacksetup.gsc?
ok i tried that but didnt work still got tags when throwning the smoke at people Sad
Reply

#4
Updated above post
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
Reply

#5
hey just gave that a try but it didnt seem to work ,bugger ,
thanks heaps for looking in to this for me , your really a great help and we need more people like you here xD any other suggestions ?

oh and i thought maybe it just needed the full name so i tried
Code:
    if(isSubStr(sWeapon, "willy_pete_mp"))
iDamage = 0;
but that didnt work ether Sad
Reply

#6
im doing it right by addin in to _callbacksetup.gsc yea? coz im not getting compile errors or anything i just keep getting tags :S
Reply

#7
put this
Code:
if(isSubStr(sWeapon, "willy") || isSubStr(sWeapon, "smoke"))
iDamage = 0;
in the thread in _callbacksetup.gsc named CodeCallback_PlayerDamage
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
Reply

#8
yea thats what i was doing, this is what my callbacksetup looks like
Code:
/*================
Called when a player has taken damage.
self is the player that took damage.
================*/
CodeCallback_PlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
{
    self endon("disconnect");
if(isSubStr(sWeapon, "willy") || isSubStr(sWeapon, "smoke"))
iDamage = 0;

    [[level.callbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
}
but thats not working
Reply

#9
hmm what am in doing wrong,, or am i doing it right but this code dose not work? could maybe someone else test it ??? plaese
Reply

#10
hey
Code:
iDFlags & level.iDFLAGS_PENETRATION
is this helpfull?
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Is it safe exactly when i remove the battery from the laptop? checkitnowa 2 2,964 09-13-2013, 08:15
Last Post: CJGreenLabel
  Help remove timer Dynasty 15 7,706 08-25-2013, 13:56
Last Post: hillbilly
  how to remove commands in the chat ExoGamer* 6 4,055 07-20-2013, 09:24
Last Post: Pozzuh
  Help Remove Death Barriers? Help Please! camxxcore 1 2,391 06-28-2013, 09:38
Last Post: Yamato
  Help threading remove EnVi Sweden Rocks 3 3,053 01-28-2013, 15:26
Last Post: JariZ
  [Release] LiquidPoop - Custom Skins/Camos/Hitmarkers LiquidPoop 6 6,273 09-26-2012, 03:34
Last Post: LiquidPoop
  Help Remove Threading/tidyup hillbilly 4 4,233 09-16-2012, 11:09
Last Post: zxz0O0
  [Request] plugin to remove all secondary ammo ALEXFDR 1 2,188 09-08-2012, 23:32
Last Post: Nekochan
  Remove mini map moosa67 2 2,405 08-22-2012, 21:26
Last Post: Nukem
  [Release] Anti Hitmarkers narkos 5 4,207 07-19-2012, 00:49
Last Post: jakata

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.