Advertisement
evilrazer

BF3 Admin Console Commands

Oct 25th, 2011
3,171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. --------------------------------------------------
  2. Communication
  3. --------------------------------------------------
  4.  
  5. admin.say <message: string> <players: player subset> - Send a chat message to players. The message must be less than 128 characters long.
  6.  
  7. --------------------------------------------------
  8. HOW TO SWITCH TO SPECIFIC MAP
  9. --------------------------------------------------
  10.  
  11. Example: mapList.setNextMapIndex MP_001 ConquestLarge0 2
  12.  
  13. - mapList.setNextMapIndex - general command for setting which map will be the next map;
  14. - MP_001 - Engine name for "Grand Bazaar";
  15. - ConquestLarge0 - Engine name for Conquest game mode, Large 64 player map;
  16. - 2 - number of rounds on this map.
  17.  
  18. --------------------------------------------------
  19. GAME MODES
  20. --------------------------------------------------
  21.  
  22. Engine Name Human-Readable Name Intended max player count
  23.  
  24. ConquestLarge0..........Conquest64........................64
  25. ConquestSmall0..........Conquest..........................32
  26. RushLarge0..............Rush..............................32
  27. SquadRush0..............Squad Rush.........................8
  28. SquadDeathMatch0........Squad Deathmatch..................16
  29. TeamDeathMatch0.........Team Deathmatch...................32
  30.  
  31. --------------------------------------------------
  32. MAPS
  33. --------------------------------------------------
  34.  
  35. Engine name Human-readable name
  36. MP_001..........Grand Bazaar
  37. MP_003..........Teheran Highway
  38. MP_007..........Caspian Border
  39. MP_011..........Seine Crossing
  40. MP_012..........Operation Firestorm
  41. MP_013..........Damavand Peak
  42. MP_017..........Noshahar Canals
  43. MP_018..........Kharg Island
  44. MP_Subway.......Operation Metro
  45.  
  46. --------------------------------------------------
  47. CONTROLLING MAP SWITCHING
  48. --------------------------------------------------
  49.  
  50. 1. mapList.* - edit the maplist while the server is running.
  51. 2. mapList.setNextMapIndex - sets which will be the next map.
  52. 3. mapList.getMapIndices - returns information on which is the current and next map in the list.
  53. 4. mapList.runNextRound - switches to the next round, without finishing the current.
  54. 5. mapList.restartRound - makes all players reload the current map, and restarts the current round.
  55. 6. mapList.endRound - declares a specific team as the winning team, and then moves directly to the end-of-round screen.
  56.  
  57. --------------------------------------------------
  58. MANAGE PLAYERS
  59. --------------------------------------------------
  60.  
  61. 1. admin.kickPlayer<soldier name: player name> [reason: string]
  62.  
  63. Effect: Kick player <soldier name> from server Comments: Reason text is optional. Default reason is “Kicked by administrator”.
  64.  
  65. 2. admin.listPlayers<players: player subset>
  66.  
  67. Effect: Return list of all players on the server; including guids
  68.  
  69. 3. admin.movePlayer<name: player name><teamId: Team ID><squadId: Squad ID><forceKill: boolean>
  70.  
  71. Effect: Move a player to another team and/or squad Comment: Only works if player is dead. This command will kill player if forceKill is true
  72.  
  73. 4. admin.killPlayer<name: player name>
  74.  
  75. Effect: Kill a player without any stats effect
  76.  
  77. --------------------------------------------------
  78. MISC
  79. --------------------------------------------------
  80.  
  81. admin.serverinfo - to find out EA_GUID
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement