programming

  1. NexusDev

    Riptide Force Source Code - PS3/PC/XBOX

    Riptide Force Source Code - PS3 / XBOX / PC Download : Riptide Force Source
  2. NexusDev

    Tutorial How To Add Glare Header To Menu Base

    1st Go To Ur Menu Source Code 2nd Add This Code Into Ur Menu Menu Base Used For Presentation : 2much4u Code 1: add These 1st: int gGlareHandle; int scaleform; float gGlareDir; float GlareX = 1.10f; float GlareY = 0.41f; float Glarewidth = 0.71f; float Glareheight = 0.73f; Code 2 [Main]...
  3. CabCon

    Tutorial Basic GSC Coding: Switch

    Hello CCM, In this tutorial I am going to explain how does the function "switch" works and how to use it. It is used when you have to use a lot of "if"s, to reduce the ammount of "if"s you use this switch. See the comparison below: number = randomIntRange( 1, 5 ); if( number == 1 ) a = 1...
  4. CabCon

    Tutorial Basic GSC Coding: Operations

    Hello This is another basic tutorial I wanted to make. This one is about numbers and math functions. In cod you can use 2 kinds of numbers, "int"s and "float"s. "Int"s are entire numbers ( 2, 3, 50, 1000, 45 ... ) and "float"s are decimal numbers ( 1.1, 4.324, 6.67, 3.141592 ... ). If you have...
Top