This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace RAGE.Parser.Globals | |
{ | |
public class Global | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Compiled using RAGE-C by Tustin 4/15/2017 | |
:__script_entry__ | |
Function 0 2 0 | |
//Auto assigning 13 statics | |
push_0 | |
StaticSet1 1 //Menus_MAIN_MENU | |
push_1 | |
StaticSet1 2 //Menus_PLAYER_MENU | |
push_2 | |
StaticSet1 3 //Menus_VEHICLE_MENU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Menus { | |
MAIN_MENU, | |
PLAYER_MENU, | |
VEHICLE_MENU, | |
WEAPON_MENU, | |
WORLD_MENU, | |
}; | |
enum PlayerMenu { | |
GODMODE, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
foreach (scandir("scripts") as $dir) { | |
foreach (scandir("scripts/".$dir) as $file) { | |
if ($file == '.' || $file == '..') { | |
continue; | |
} | |
$path = pathinfo($file); | |
if ($path['extension'] == 'full') { | |
copy("scripts/$dir/" . $file, 'scripts/output/' . $file); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Compiled using RAGE-C by Tustin 3/26/2017 | |
:__script_entry__ | |
Function 0 2 0 | |
Call @main | |
Return 0 0 | |
:main | |
Function 0 3 0 | |
:loop_0 | |
CallNative PLAYER_PED_ID 0 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//compiled using RAGE-C by Tustin | |
:__script__entry | |
Function 0 2 0 | |
Call @main | |
Return 0 0 | |
:main | |
Function 0 12 0 | |
CallNative "player_id" 0 1 | |
setF1 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hash PegasusImSorryKryptus(int uParam0) | |
{ | |
switch (uParam0) | |
{ | |
case 0: | |
return $("ztype"); | |
case 1: | |
return $("stinger"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int PegasusWHATTHEFUCK(int iParam0) { | |
if (iParam0 < 0) | |
{ | |
return -1; | |
} | |
switch (iParam0) | |
{ | |
case 0: | |
return 17; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <wchar.h> | |
#include <sys/prx.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/syscall.h> | |
#include <sys/ppu_thread.h> | |
#include <string.h> | |
#include <sys/sys_time.h> | |
#include <sys/time_util.h> | |
#include <stdarg.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TunablesDiff { | |
//tunable value existed before, but it's value was changed | |
const TUNABLE_VALUE_CHANGED = 1; | |
//tunable value didn't exist before and was just added | |
const TUNABLE_NEW = 2; | |
//tunable was removed from the new version | |
const TUNABLE_REMOVED = 3; | |
public static function SortTunables($tunableJson) { |