root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/network/aion/serverpackets/SM_SYSTEM_MESSAGE.java
| 2284 | 2440 | ||
|---|---|---|---|
102 | { | 102 | { |
103 | return new SM_SYSTEM_MESSAGE(1370002, _exp); | 103 | return new SM_SYSTEM_MESSAGE(1370002, _exp); |
104 | } | 104 | } |
105 | |||
106 | /** | ||
107 | * Gather-related | ||
108 | */ | ||
109 | |||
110 | public static SM_SYSTEM_MESSAGE GATHER_SKILL_POINT_UP(String skillName, int newLevel) | ||
111 | { | ||
112 | return new SM_SYSTEM_MESSAGE(1330005, skillName, newLevel); | ||
113 | } | ||
105 | 114 | ||
106 | public static SM_SYSTEM_MESSAGE Gather_Success(String _value) | 115 | public static SM_SYSTEM_MESSAGE GATHER_SUCCESS_GETEXP() |
107 | { | 116 | { |
108 | return new SM_SYSTEM_MESSAGE(1330058, _value); | 117 | return new SM_SYSTEM_MESSAGE(1330058); |
109 | } | 118 | } |
119 | |||
120 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_START_1_BASIC(DescriptionId nameId) | ||
121 | { | ||
122 | return new SM_SYSTEM_MESSAGE(1330077, nameId); | ||
123 | } | ||
124 | |||
125 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_SUCCESS_1_BASIC(DescriptionId nameId) | ||
126 | { | ||
127 | return new SM_SYSTEM_MESSAGE(1330078, nameId); | ||
128 | } | ||
129 | |||
130 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_FAIL_1_BASIC(DescriptionId nameId) | ||
131 | { | ||
132 | return new SM_SYSTEM_MESSAGE(1330079, nameId); | ||
133 | } | ||
134 | |||
135 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_CANCEL_1_BASIC() | ||
136 | { | ||
137 | return new SM_SYSTEM_MESSAGE(1330080); | ||
138 | } | ||
139 | |||
140 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_INVENTORY_IS_FULL() | ||
141 | { | ||
142 | return new SM_SYSTEM_MESSAGE(1330081); | ||
143 | } | ||
144 | |||
145 | public static SM_SYSTEM_MESSAGE EXTRACT_GATHER_SUCCESS_GETEXP() | ||
146 | { | ||
147 | return new SM_SYSTEM_MESSAGE(1330082); | ||
148 | } | ||
110 | 149 | ||
111 | /** | 150 | /** |
112 | * Your Requested player to trade | 151 | * Your Requested player to trade |
... | ... | ||
789 | /** | 828 | /** |
790 | * Trading (Private Store, etc.) | 829 | * Trading (Private Store, etc.) |
791 | */ | 830 | */ |
792 | public static SM_SYSTEM_MESSAGE NOT_ENOUGH_KINAH(int kinah) | 831 | public static SM_SYSTEM_MESSAGE NOT_ENOUGH_KINAH(long kinah) |
793 | { | 832 | { |
794 | return new SM_SYSTEM_MESSAGE(901285, kinah); | 833 | return new SM_SYSTEM_MESSAGE(901285, kinah); |
795 | } | 834 | } |
Download diff