| 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
 | |   |  | #/**½Çɫװ±¸ÀàÐÍ*/  |  | #enum            RoleEquipType  |  | #{  |  | #    retWeapon = 0,      ///<0 ÎäÆ÷  |  | #    retClothes,         ///<1 Ò·þ  |  | #    retMask,            ///<2 Ãæ¾ß  |  | #    retArm,             ///<3 »¤Íó  |  | #    retShoes,           ///<4 Ð¬×Ó  |  | #    retNeck,            ///<5 ÏîÁ´  |  | #    retINC1,            ///<6ÔöÖµÎïÆ·À¸1  |  | #    retINC2 ,           ///<7ÔöÖµÎïÆ·À¸2  |  | #    retHorse ,          ///<8Âí  |  | #    retTitle ,          ///<9³ÆºÅ  |  | #    retHorseFood ,      ///<10ÂíÆ¥ËÇÁÏ  |  | #    retShopping ,       ///<11°Ú̯  |  | #    retRingLeft,        ///<12×óÊÖ½äÖ¸  |  | #    retRingRight,       ///<13ÓÒÊÖ½äÖ¸  |  | #    retClothesCoat,     ///<14Ò·þÍâÌ×  |  | #    retWeaponCoat,      ///<15ÎäÆ÷ÍâÌ×  |  | #    retBelt,            ///<16Ñü´ø  |  | #    retAmulet,          ///<17»¤·û  |  | #    retBraceletLeft,    ///<×óÊÖïí  |  | #    retBraceletRight,   ///<ÓÒÊÖïí  |  | #    retWeapon2,         ///<20¸±ÊÖÎäÆ÷  |  | #    retTrousers,        ///<21¿ã×Ó£¬»¤ÍÈ  |  | #    retWing,            ///<22³á°ò  |  | #    retGuard,            ///<23ÊØ»¤  |  | #    retMax              ///<×î´ó×°±¸ÊýÄ¿, Èç¹û³öÏÖ´ËÖµ, Ôò´íÎó  |  | #};  |  |   |  | (  |  | [  |  |     [3,4,5,6],  #×°±¸½×¼¶ÁÐ±í  |  |     [2, 1, 3, 0, 12, 21, 5, 16, 17, 20, 13, 4],  #×°±¸²¿Î»ÁÐ±í  |  |     [3,3,3,3],  #×°±¸ÆÀ·ÖÏÞÖÆ£¬¶ÔÓ¦½×¼¶Áбí˳Ðò,2ÊÇA£¬ÀàÍÆ  |  |     0  #ÊÇ·ñÏòϼæÈÝ  |  | ]  |  | ) | 
 |