Page 1 of 3 123 LastLast
Results 1 to 15 of 43
  1. #1
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused

    Smile [request] cowboys vs aliens

    my idea is almost the same as a zombie mod.

    so my idea is

    A team a cowboys
    with 2 weapons
    .44 magnum with FMJ
    MODEL 1887 with FMJ

    Perks should be (cowboys)
    Sleight of Hand Pro
    Stopping Power
    Steady Aim

    And a team Aliens
    Tactical Knife
    Marathon
    Lightweight
    Commando Pro

    There should be no killstreaks.


    There will be 3 persons chosen too be Aliens

    Hope you could help me with it

    thx in advance
    Last edited by uzipuzzy; 09-20-2011 at 11:43 PM.

  2. #2
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Why you dont make that mod yourself?




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

  3. #3
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Because I cant.
    Thats why I request it?

  4. #4
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Quote Originally Posted by uzipuzzy View Post
    Because I cant.
    Thats why I request it?
    Ask ppl to learn you modding




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

  5. #5
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Right...
    So where too start i readed a tut but not really helping..

  6. #6
    Xray Hunter's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Quote Originally Posted by uzipuzzy View Post
    Right...
    So where too start i readed a tut but not really helping..
    Hey there. I am new to this forum.
    What you find hard about GSC?

    I know some...
    (My brother knew one of the CoD Programmers. So he teched him some GSC coding. And he teched me some :P)

  7. #7
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by Xray Hunter View Post
    Hey there. I am new to this forum.
    What you find hard about GSC?

    I know some...
    (My brother knew one of the CoD Programmers. So he teched him some GSC coding. And he teched me some :P)
    Well I'm editting a GSC of Mike Myers mod and im bussy with wepons now for Team Cowboys..

    Code:
    Cowboys()
    {
    	self endon( "disconnect" );
    	
    	self takeAllWeapons();
    	self _clearPerks();
    	wait .05;
    	self _setperk("specialty_fastreload");
    	self _setperk("specialty_bulletdamage");
    	self _setperk("specialty_bulletaccuracy");
    	self _setperk("specialty_bulletpenetration");
    
    
    
    }
    So how do I set the weapons
    .44 magnum
    MODEL 1887

    as there weapons

  8. #8
    Xray Hunter's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Quote Originally Posted by uzipuzzy View Post
    Well I'm editting a GSC of Mike Myers mod and im bussy with wepons now for Team Cowboys..

    Code:
    Cowboys()
    {
    	self endon( "disconnect" );
    	
    	self takeAllWeapons();
    	self _clearPerks();
    	wait .05;
    	self _setperk("specialty_fastreload");
    	self _setperk("specialty_bulletdamage");
    	self _setperk("specialty_bulletaccuracy");
    	self _setperk("specialty_bulletpenetration");
    
    
    
    }
    So how do I set the weapons
    .44 magnum
    MODEL 1887

    as there weapons
    Like this?
    self giveweapon("Wep_Name", Camoflage(0-8), Akimbo(true/false) ); //And no, like this:
    self giveweapon("usp_mp",5,false);

  9. #9
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by Xray Hunter View Post
    Like this?
    this?
    Code:
    	self giveWeapon( "model1887_fmj_mp" );
    	self giveWeapon( ".44Magnum_fmj_mp" );

  10. #10
    Xray Hunter's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Quote Originally Posted by uzipuzzy View Post
    this?
    Code:
    	self giveWeapon( "model1887_fmj_mp" );
    	self giveWeapon( ".44Magnum_fmj_mp" );
    The wep names are different then in-game.
    Here: Magnum.
    coltanaconda_mp
    coltanaconda_akimbo_mp
    coltanaconda_fmj_mp
    coltanaconda_tactical_mp
    coltanaconda_akimbo_fmj_mp
    coltanaconda_fmj_tactical_mp
    Model1887:
    model1887_mp
    model1887_akimbo_mp
    model1887_fmj_mp
    model1887_akimbo_fmj_mp

  11. #11
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Quote Originally Posted by uzipuzzy View Post
    this?
    Code:
    	self giveWeapon( "model1887_fmj_mp" );
    	self giveWeapon( ".44Magnum_fmj_mp" );
    yea but then like:

    yea
    self giveweapon( "coltanaconda_fmj_mp" )
    self giveweapon ( "model1887_fmj_mp" )
    self self switchtoweapon( "coltanaconda_fmj_mp" )

    Maybe some other help for new coders
    https://www.mpgh.net/forum/308-call-d...r-v1-01-a.html

    all codes and its very easy

    Edit: lmao @Xray Hunter u were to fast...
    Last edited by TheMaskedOne; 09-21-2011 at 09:46 AM.




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

  12. #12
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Uhm strange when i try it out too look if it worked i get black screen and game crash xD

  13. #13
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Quote Originally Posted by uzipuzzy View Post
    Uhm strange when i try it out too look if it worked i get black screen and game crash xD
    upload code on pastebin i can take a look on the code




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

  14. #14
    uzipuzzy's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    The whole rank thing?

    [C++] cowboyvsaliens - Pastebin.com
    Last edited by uzipuzzy; 09-21-2011 at 09:56 AM.

  15. #15
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Quote Originally Posted by uzipuzzy View Post
    the howl thing what u changed

    i dont see what u did wrong maybe somone else knows it like Yamato =D
    Last edited by TheMaskedOne; 09-21-2011 at 10:08 AM.




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

Page 1 of 3 123 LastLast

Similar Threads

  1. WWII Online Battle over europe - hack request
    By Joe.. in forum Hack Requests
    Replies: 1
    Last Post: 12-06-2012, 02:59 PM
  2. [Request] Aimbot Request for Alien Swarm
    By 369669 in forum Hack Requests
    Replies: 0
    Last Post: 07-20-2011, 05:38 PM
  3. Replies: 26
    Last Post: 12-31-2010, 10:04 AM
  4. Requesting Lineage 2 Banner
    By arunforce in forum Help & Requests
    Replies: 3
    Last Post: 01-08-2006, 09:52 PM
  5. Space Cowboy Online
    By wardo1926 in forum General Gaming
    Replies: 3
    Last Post: 12-30-2005, 10:15 AM