Results 1 to 3 of 3

Thread: .gsc & .arena!

  1. #1
    Private First Class
    Join Date
    Jul 2013
    Posts
    170
    Thanks
    44
    Thanked 16 Times in 11 Posts

    .gsc & .arena!

    Hello,All I has make some map,and i need help with .gsc and .arena file.

    Can somebody help how to make?
    If can conctact me
    xf:rockybalboa23

    Thanks.

  2. #2
    Lieutenant Loveboy's Avatar
    Join Date
    Nov 2012
    Posts
    546
    Thanks
    229
    Thanked 72 Times in 46 Posts
    Hi, as first you need you mapname.d3dbsp , you get it for compiling your mapname.map .

    To test your map, you need a mapname.gsc (example: mp_town.gsc)

    this mp_town.gsc include in the file:

    Code:
    main()
    {
         maps\mp\_load::main();
    }
    That you need 100% to test your map. For more things (special) in your map, which must go by scripts (elevator), then you have to add this in the .gsc too.

    The mp_town.gsc is in the folder maps/mp .

    __________________________________________________ ________________________________

    the file .arena is a part of the map (its not important).

    It looks so if you have not the arena:

    Attachment 342

    you see the mp_town as title? Thats so because there isn't an .arena file.

    And now with an arena:

    Attachment 343

    that .arena is in the folder mp . the name is: mp_town.arena

    that looks so:

    Code:
    {
    
                map              "mp_town"
    
                longname         "Town testing!"
    
                gametype         "tdm dm"
    
    }
    You must rename it to your map and set your own title.

    For more help, you can ask!

  3. The Following User Says Thank You to Loveboy For This Useful Post:

    kung foo man (15th July 2013)

  4. #3
    Private First Class
    Join Date
    Jul 2013
    Posts
    170
    Thanks
    44
    Thanked 16 Times in 11 Posts
    Thanks Bro!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •