Thread: _minefield.gsc

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    TechnoX's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Logitech G510.
    Posts
    154
    Reputation
    11
    Thanks
    3
    My Mood
    Yeehaw

    _minefield.gsc

    Anyone knows how to use those mines? Spawn them?

  2. #2
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by TechnoX View Post
    Anyone knows how to use those mines? Spawn them?


    First of all, learn the GSC.
    And you would see AND know that this is SP..
    Not MP

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  3. #3
    pyrozombie's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    holland
    Posts
    351
    Reputation
    12
    Thanks
    62
    My Mood
    Cool
    you could create your own mine field i think

    by making a mapedit where you place mines in every map

  4. #4
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Quote Originally Posted by pyrozombie View Post
    you could create your own mine field i think

    by making a mapedit where you place mines in every map
    Could be made, yes.

  5. #5
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    u can spawn some objects and i you are closer then 200 or smth then playFX(level.rcxd_explode_fx["explode"]["medium"], self.origin);

  6. #6
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by mathieutje12 View Post
    u can spawn some objects and i you are closer then 200 or smth then playFX(level.rcxd_explode_fx["explode"]["medium"], self.origin);
    Remember.
    This is just the FX, so you won't take any damage.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  7. #7
    TechnoX's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Logitech G510.
    Posts
    154
    Reputation
    11
    Thanks
    3
    My Mood
    Yeehaw
    Radius damage, this should be easy to make. Is it possible to use the mine model?
    Last edited by TechnoX; 06-10-2011 at 11:31 AM.

  8. #8
    pyrozombie's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    holland
    Posts
    351
    Reputation
    12
    Thanks
    62
    My Mood
    Cool
    make a modd from this would be cool:P

  9. #9
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Quote Originally Posted by TechnoX View Post
    Radius damage, this should be easy to make. Is it possible to use the mine model?
    Is there a mine model?

  10. #10
    TechnoX's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Logitech G510.
    Posts
    154
    Reputation
    11
    Thanks
    3
    My Mood
    Yeehaw
    Yes in singleplayer, where Makarov's friends attack you and mine pop up out of nowhere. Btw Ghost died at there

  11. #11
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    its an explosing fx xD if you add this to
    RadiusDamage( self.origin, range, maxdamage, mindamage, self );

  12. #12
    TechnoX's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Logitech G510.
    Posts
    154
    Reputation
    11
    Thanks
    3
    My Mood
    Yeehaw
    It uses a model...

  13. #13
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    yeah add a model with a fx and damage and u got a mine =D
    Azumikkel:
    Code:
    self.mines = 2;
    			max = self.mines;
    			i = 0;
    			for(;;){
    			self waittill("F");
    			if(self.mines > 0 && self isOnGround()){
    			i++;
    			self PlayLocalSound( "javelin_clu_aquiring_lock" );
    			self.mines--;
    			self.mine[i] = spawn( "script_model", self.origin-(0,0,20) );
    			self.mine[i] setModel("c130_zoomrig");
    			self.mine[i] thread mines(self);}
    			else { self iPrintLnBold("Wait until a mine explodes - max mines at once: ",max); }}
    Code:
    mines(owner)
    {
    self endon("mine_exploded");
    wait 5;
    owner PlayLocalSound( "javelin_clu_lock" );
    overcross = 0;
    self setNormalHealth( 10 );
    for(;;){
    foreach(player in level.players)
    if(distance(player.origin, self.origin) < 150)
    overcross = 1;
    if(overcross){
    self playSound( "claymore_activated" );
    owner PlayLocalSound( "javelin_clu_aquiring_lock" );
    wait 0.10;
    self playSound( "claymore_activated" );
    owner PlayLocalSound( "javelin_clu_aquiring_lock" );
    wait 0.10;
    self playSound( "claymore_activated" );
    owner PlayLocalSound( "javelin_clu_aquiring_lock" );
    wait 0.30;
    MagicBullet("ac130_40mm_mp", self.origin+(0,0,30), self.origin, owner);
    owner.mines++;
    wait 0.10;
    self delete();
    self notify("mine_exploded");}
    wait 0.05;}
    }
    Last edited by mathieutje12; 06-10-2011 at 02:23 PM.

  14. The Following User Says Thank You to mathieutje12 For This Useful Post:

    TechnoX (06-11-2011)

  15. #14
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,627
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    Hello I would like to inform you that this mod had been released a long time ago lol why don't you download it.

  16. #15
    TechnoX's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Logitech G510.
    Posts
    154
    Reputation
    11
    Thanks
    3
    My Mood
    Yeehaw
    Where, link?
    I have big mess.

Page 1 of 2 12 LastLast