mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
New feature: Covert ops
- you can disguise members of your team as civilians or soldiers and, if careful, avoid detection by the enemy. - For more info, see http://www.bears-pit.com/board/ubbthreads.php/topics/309312/New_feature_Covert_operations.html#Post309312 - GameDir revision >= 1529 is needed for this feature - fixed a bug that could cause inventory items to be treated like armed bombs - bloodcats can now be skinned git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@5529 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+16
-16
@@ -5,17 +5,17 @@
|
||||
|
||||
// Message box flags
|
||||
#define MSG_BOX_FLAG_USE_CENTERING_RECT 0x0001 // Pass in a rect to center in
|
||||
#define MSG_BOX_FLAG_OK 0x0002 // Displays OK button
|
||||
#define MSG_BOX_FLAG_YESNO 0x0004 // Displays YES NO buttons
|
||||
#define MSG_BOX_FLAG_CANCEL 0x0008 // Displays YES NO buttons
|
||||
#define MSG_BOX_FLAG_FOUR_NUMBERED_BUTTONS 0x0010 // Displays four numbered buttons, 1-4
|
||||
#define MSG_BOX_FLAG_YESNOCONTRACT 0x0020 // yes no and contract buttons
|
||||
#define MSG_BOX_FLAG_OKCONTRACT 0x0040 // ok and contract buttons
|
||||
#define MSG_BOX_FLAG_YESNOLIE 0x0080 // ok and contract buttons
|
||||
#define MSG_BOX_FLAG_CONTINUESTOP 0x0100 // continue stop box
|
||||
#define MSG_BOX_FLAG_OKSKIP 0x0200 // Displays ok or skip (meanwhile) buttons
|
||||
#define MSG_BOX_FLAG_GENERICCONTRACT 0x0400 // displays contract buttoin + 2 user-defined text buttons
|
||||
#define MSG_BOX_FLAG_GENERIC 0x0800 // 2 user-defined text buttons
|
||||
#define MSG_BOX_FLAG_OK 0x0002 // Displays OK button
|
||||
#define MSG_BOX_FLAG_YESNO 0x0004 // Displays YES NO buttons
|
||||
#define MSG_BOX_FLAG_CANCEL 0x0008 // Displays YES NO buttons
|
||||
#define MSG_BOX_FLAG_FOUR_NUMBERED_BUTTONS 0x0010 // Displays four numbered buttons, 1-4
|
||||
#define MSG_BOX_FLAG_YESNOCONTRACT 0x0020 // yes no and contract buttons
|
||||
#define MSG_BOX_FLAG_OKCONTRACT 0x0040 // ok and contract buttons
|
||||
#define MSG_BOX_FLAG_YESNOLIE 0x0080 // ok and contract buttons
|
||||
#define MSG_BOX_FLAG_CONTINUESTOP 0x0100 // continue stop box
|
||||
#define MSG_BOX_FLAG_OKSKIP 0x0200 // Displays ok or skip (meanwhile) buttons
|
||||
#define MSG_BOX_FLAG_GENERICCONTRACT 0x0400 // displays contract buttoin + 2 user-defined text buttons
|
||||
#define MSG_BOX_FLAG_GENERIC 0x0800 // 2 user-defined text buttons
|
||||
// OJW - Adding text chatbox
|
||||
#define MSG_BOX_FLAG_INPUTBOX 0x1000 // has a text input field
|
||||
// Flugente - added boxes for simultaneous defuse/detonate mechanism
|
||||
@@ -23,11 +23,11 @@
|
||||
#define MSG_BOX_FLAG_SIXTEEN_NUMBERED_BUTTONS 0x4000 // Displays sixteen numbered buttons, 1-16, for setting up a tripwire network and choosing both a detonation and defusing frequency
|
||||
|
||||
// message box return codes
|
||||
#define MSG_BOX_RETURN_OK 1 // ENTER or on OK button
|
||||
#define MSG_BOX_RETURN_YES 2 // ENTER or YES button
|
||||
#define MSG_BOX_RETURN_NO 3 // ESC, Right Click or NO button
|
||||
#define MSG_BOX_RETURN_CONTRACT 4 // contract button
|
||||
#define MSG_BOX_RETURN_LIE 5 // LIE BUTTON
|
||||
#define MSG_BOX_RETURN_OK 1 // ENTER or on OK button
|
||||
#define MSG_BOX_RETURN_YES 2 // ENTER or YES button
|
||||
#define MSG_BOX_RETURN_NO 3 // ESC, Right Click or NO button
|
||||
#define MSG_BOX_RETURN_CONTRACT 4 // contract button
|
||||
#define MSG_BOX_RETURN_LIE 5 // LIE BUTTON
|
||||
|
||||
// message box style flags
|
||||
enum
|
||||
|
||||
Reference in New Issue
Block a user