aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/pintelemetry.gnut
blob: fd4808deac3853823c9c28669b7114cc7e0e85b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// all stubs because we don't really need this
// if we actually ever want to mess with stats stuff, code already calls all this

global function PIN_Init
global function PIN_BuyItemWithRealMoney
global function PIN_BuyItem
global function PIN_GiveItem
global function PIN_GiveCredits
global function PIN_ConsumeItem
global function PIN_AddToPlayerCountStat
global function PIN_PlayerAbility
global function PIN_PlayerAbilityReady
global function PIN_DamageDone
global function PIN_PlayerRodeoedEnemyTitanToCompletion

void function PIN_Init()
{

}

void function PIN_BuyItemWithRealMoney( entity player, bool _0, string name, int cost )
{

}

void function PIN_BuyItem( entity player, bool _0, string name, int cost )
{

}

void function PIN_GiveItem( entity player, bool _0, string name, int count )
{

}

void function PIN_GiveCredits( entity player, int count )
{

}

void function PIN_ConsumeItem( entity player, string name )
{

}

void function PIN_AddToPlayerCountStat( entity player, string name )
{

}

void function PIN_PlayerAbility( entity player, string name, string action, table args, float duration = 0 )
{

}

void function PIN_PlayerAbilityReady( entity player, string action )
{

}

void function PIN_DamageDone( entity player, entity victim, var damageInfo )
{

}

void function PIN_PlayerRodeoedEnemyTitanToCompletion( entity player, entity titan, bool playerHadBattery )
{

}