EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Player::Timer Namespace Reference

Enumerations

enum  {
  Default = 1000, Board = 600, Jump = 1800, Undock = 2000,
  Docking = 1000, Jumping = 4000, Moving = 1000, Scanning = 10000,
  Killed = 800, Proc = 1000, Jetcan = 600000, Logout = 10000,
  Login = 4000, Session = 10000, DockInvul = 3000, Fleet = 1500,
  JumpInvul = 15000, WarpOutInvul = 5000, WarpInInvul = 18000, UndockInvul = 20000,
  RestoringInvul = 60000, JumpCloak = 30000, LoginCloak = 20000, UnCloak = 5000
}
 

Enumeration Type Documentation

anonymous enum
Enumerator
Default 
Board 
Jump 
Undock 
Docking 
Jumping 
Moving 
Scanning 
Killed 
Proc 
Jetcan 
Logout 
Login 
Session 
DockInvul 
Fleet 
JumpInvul 
WarpOutInvul 
WarpInInvul 
UndockInvul 
RestoringInvul 
JumpCloak 
LoginCloak 
UnCloak 

Definition at line 16 of file EVE_Player.h.

16  {
17  Default = 1000,
18  Board = 600,
19  Jump = 1800, // used to delay sending Destiny::State (client error fix)
20  Undock = 2000, // used to delay sending Destiny::State (client error fix)
21  Docking = 1000, // to delay docking (as on live)
22  Jumping = 4000, // to delay jumping
23  Moving = 1000,
24  Scanning = 10000, // used to delay scan results based on skills, items, and other shit
25  Killed = 800, // used to reset ego after killed or otherwise changing ships
26  Proc = 1000, // used to give process ticks to docked players (for skill updates...tick cycle consumption negligible)
27  Jetcan = 600000, // used to delay jetcan creation. 10min default
28  Logout = 10000, // used to hold client object until WarpOut finishes
29  Login = 4000, // delay before sending SetState when client logs in undocked
30  Session = 10000, // used to prevent multiple session changes from occurring too fast
31  DockInvul = 3000,
32  Fleet = 1500,
33  JumpInvul = 15000, // increased from 5s
34  WarpOutInvul = 5000,
35  WarpInInvul = 18000, // increased from 10s
36  UndockInvul = 20000,
37  RestoringInvul = 60000,
38  JumpCloak = 30000,
39  LoginCloak = 20000,
40  UnCloak = 5000 // not implemented yet
41  };