Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115

    Have something kill you at <coordinates>?

    Would it be possible that if you stand at a certain place, if you stand there for lets say 3 sec, you die?

  2. #2
    maarten551's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    75
    My Mood
    Mellow
    it should be :S

    you should made a loop when you are in those cordinates!
    and check every sec if he is in the cordinates xD

    My Youtube account : Maarten551, subscribe me ^^
    [YOUTUBE]lSl0HlhGQsY[/YOUTUBE]
    AIzombies for Alteriw, Check it now!
    [YOUTUBE]U9OjBsHgcKQ[/YOUTUBE]
    hover/cordinates mod with visible bunkers!!!
    ---------------------------------------------------
    Most important waittills

  3. #3
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    The point is.. how /

  4. #4
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    Code:
    for(;;){
    if(distance(self, (0, 0, 0)) < 50)
    self suicide();
    wait 0.05;}
    
    for(;;){
    if(distance2d(self, (0, 0, 0)) < 50)
    self suicide();
    wait 0.05;}
    www.YouTube.com/MpKiller100

  5. The Following 2 Users Say Thank You to AZUMIKKEL For This Useful Post:

    Arasonic (09-27-2010),Mirciulikkk (09-28-2010)

  6. #5
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    <3 fillerfiller

    Any way to have it effect like the Aura roll in RTD2?
    Also, if you could make the thread too I'd probably love it, I would probably fail myself anyway

    - Just dont have it damage people around you ofc
    Last edited by Arasonic; 09-27-2010 at 12:27 PM.

  7. #6
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    Code:
    for(;;){
    if(distance2d(self, (0, 0, 0)) < 50)
    self.health -= 25;
    self ShellShock( "death", 4 );
    wait 0.05;}
    And remember to put PrecacheShellshock("death"); in init()
    www.YouTube.com/MpKiller100

  8. #7
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Code:
    Fire()
    {
          self endon("disconnect");
          self endon("death");
    
    	for(;;){
          if(distance(self, (4233, 3300, 430)) < 50)
          self suicide();
          wait 0.05;}
    
          for(;;){
          if(distance2d(self, (0, 0, 0)) < 50)
          self.health -= 25;
          self ShellShock( "death", 4 );
          wait 0.05;}
    }
    Would that be right?
    I'm a total nab when it comes to making threads, don't flame if its wrong :X

    - And yes, it says fire (:
    - Forgot to add coordinates on the second one, so forget that
    Last edited by Arasonic; 09-27-2010 at 12:35 PM.

  9. #8
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    Code:
    Fire()
    {
          self endon("disconnect");
          self endon("death");
    
          for(;;){
          if(distance2d(self, (0, 0, 0)) < 50){
          self.health -= 25;
          self ShellShock( "death", 4 );}
          wait 1.5;}
    }
    www.YouTube.com/MpKiller100

  10. #9
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Oh, thought I needed both (:
    <3 you as always Azu

  11. #10
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    I made changes to it, don't forget them..
    www.YouTube.com/MpKiller100

  12. The Following User Says Thank You to AZUMIKKEL For This Useful Post:

    SitDown (09-27-2010)

  13. #11
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Quote Originally Posted by AZUMIKKEL View Post
    I made changes to it, don't forget them..
    Copy Paste ftw

    *cough* ehm, cant get it to work

    Code:
    Fire()
    {
          self endon("disconnect");
          self endon("death");
    
          for(;;){
          if(distance2d(self, (4040, 2990, 329)) < 50){
          self.health -= 25;
          self ShellShock( "death", 4 );}
          wait 1.5;}
    }
    Yes its probably bad to say that I made it for the MapEdit, don't see why it doesnt work though. Added self thread Fire(); under Rust, buuut it doesnt seem to work.
    Added the Precache thingy under Init.
    Last edited by Arasonic; 09-27-2010 at 01:09 PM.

  14. #12
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    Quote Originally Posted by Arasonic View Post
    Copy Paste ftw

    *cough* ehm, cant get it to work

    Code:
    Fire()
    {
          self endon("disconnect");
          self endon("death");
    
          for(;;){
          if(distance2d(self, (4040, 2990, 329)) < 50){
          self.health -= 25;
          self ShellShock( "death", 4 );}
          wait 1.5;}
    }
    Yes its probably bad to say that I made it for the MapEdit, don't see why it doesnt work though. Added self thread Fire(); under Rust, buuut it doesnt seem to work.
    Added the Precache thingy under Init.
    Error or simply not doing anything?
    www.YouTube.com/MpKiller100

  15. #13
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Quote Originally Posted by AZUMIKKEL View Post
    Error or simply not doing anything?
    Not doing anything.

  16. #14
    AZUMIKKEL's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My moms house... what's so funny about that?
    Posts
    790
    Reputation
    19
    Thanks
    462
    My Mood
    Sneaky
    Quote Originally Posted by Arasonic View Post
    Not doing anything.
    instead of self thread Fire(); try this

    Code:
    foreach(player in level.players)
    player thread Fire();
    www.YouTube.com/MpKiller100

  17. #15
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Nothing. filla

Page 1 of 2 12 LastLast

Similar Threads

  1. [Info] FSP Applications; Only apply if you have something to bring to the table~
    By Jack in forum Combat Arms Mod Discussion
    Replies: 37
    Last Post: 10-19-2011, 02:00 PM
  2. Black Ops... I have to tell you something
    By ttdpmg in forum Call of Duty Black Ops Discussions
    Replies: 7
    Last Post: 06-06-2011, 11:41 PM
  3. have any of you had a white head
    By dk173 in forum General
    Replies: 21
    Last Post: 07-18-2009, 01:43 AM
  4. How to fuck up palyer that killed you in reall life
    By PuMMA600 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 12-23-2008, 12:07 PM
  5. i have come to kill you
    By ikki in forum General
    Replies: 28
    Last Post: 10-08-2007, 09:07 PM