Dota 2 Workshop Tools/Scripting/API/CDOTA PlayerResource.GetConnectionState: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Undo revision 190736 by RoyAwesome (talk))
(Dota_Lebot push: Updated Page)
Line 6: Line 6:




''' <> GetConnectionState(int ''a'') '''
''' <> GetConnectionState(int ''iPlayerID'') '''


''No Description Set''
''No Description Set''
Line 19: Line 19:
|-
|-
| int
| int
| a
| iPlayerID
| No Description Set
| No Description Set
|}
|}
Line 26: Line 26:


''<>'' - No Description Set
''<>'' - No Description Set
{| class="standard-table" style="width: 50%;"
! ID
! Name
|-
| 0
| DOTA_CONNECTION_STATE_UNKNOWN
|-
| 1
| DOTA_CONNECTION_STATE_NOT_YET_CONNECTED
|-
| 2
| DOTA_CONNECTION_STATE_CONNECTED
|-
| 3
| DOTA_CONNECTION_STATE_DISCONNECTED
|-
| 4
| DOTA_CONNECTION_STATE_ABANDONED
|-
| 5
| DOTA_CONNECTION_STATE_LOADING
|-
| 6
| DOTA_CONNECTION_STATE_FAILED
|}
enum DOTAConnectionState_t {
DOTA_CONNECTION_STATE_UNKNOWN = 0;
DOTA_CONNECTION_STATE_NOT_YET_CONNECTED = 1;
DOTA_CONNECTION_STATE_CONNECTED = 2;
DOTA_CONNECTION_STATE_DISCONNECTED = 3;
DOTA_CONNECTION_STATE_ABANDONED = 4;
DOTA_CONNECTION_STATE_LOADING = 5;
DOTA_CONNECTION_STATE_FAILED = 6;
}

Revision as of 04:35, 20 June 2015

Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

<> GetConnectionState(int iPlayerID)

No Description Set


Parameters

Type Name Description
int iPlayerID No Description Set

Returns

<> - No Description Set