ItsMods

Full Version: Code problem.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i meant that if YOU (such skilled modder ) has a problem then i will even not understand what problem you have. and ofcourse just impossible to find solution
(08-19-2011, 19:50)G-Man Wrote: [ -> ]i meant that if YOU (such skilled modder ) has a problem then i will even not understand what problem you have. and ofcourse just impossible to find solution

Seems like he is not the only one that has a problem with making himself understandable :p
I made it yourself... i tried all methods lol
as Freeze Tag (don't work) etc .. i'm doing it 2 days and no result and i'm not copying FuuFuuFuuFuu
(08-19-2011, 20:24)Se7en Wrote: [ -> ]I made it yourself... i tried all methods lol
as Freeze Tag (don't work) etc .. i'm doing it 2 days and no result and i'm not copying FuuFuuFuuFuu

You are not copying .. thats why it doesn't workTroll
try this

C++ Code
  1. freezeOnDamage()
  2. {
  3. self endon( "disconnect" );
  4. self endon( "death" );
  5.  
  6. while( true )
  7. {
  8. self waittill( "damage", iDamage, eAttacker, vDir, vPoint, type, tagName, modelName, partName, sWeapon, iDFlags );
  9.  
  10. if( eAttacker == self )
  11. continue;
  12.  
  13. if( eAttacker.pers["team"] == self.pers["team"] )
  14. continue;
  15.  
  16. if( iDamage == 0 )
  17. continue;
  18.  
  19. if( sWeapon != "icelimp_mp" )
  20. continue;
  21.  
  22. // freeze code here
  23. }
  24. }
(08-19-2011, 20:28)iAegle Wrote: [ -> ]
(08-19-2011, 20:24)Se7en Wrote: [ -> ]I made it yourself... i tried all methods lol
as Freeze Tag (don't work) etc .. i'm doing it 2 days and no result and i'm not copying FuuFuuFuuFuu

You are not copying .. thats why it doesn't workTroll
try this

no >.>
I'm never copied code, just ideas rofl .
Freeze tag? there's native cod code, the "mod" add only ice texture to player model, and other s*** like rage people who try to load it as private match.
have you tried sometime "search" function on raw directory?
Also you can link native dev.gsc to your mod for get more info.....
Pages: 1 2