-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathDeclares.bas
More file actions
3894 lines (3656 loc) · 102 KB
/
Copy pathDeclares.bas
File metadata and controls
3894 lines (3656 loc) · 102 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Attribute VB_Name = "Declaraciones"
' Argentum 20 Game Server
'
' Copyright (C) 2023 Noland Studios LTD
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU Affero General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU Affero General Public License for more details.
'
' You should have received a copy of the GNU Affero General Public License
' along with this program. If not, see <https://www.gnu.org/licenses/>.
'
' This program was based on Argentum Online 0.11.6
' Copyright (C) 2002 Márquez Pablo Ignacio
'
' Argentum Online is based on Baronsoft's VB6 Online RPG
' You can contact the original creator of ORE at aaron@baronsoft.com
' for more information about ORE please visit http://www.baronsoft.com/
'
'
'
Option Explicit
''
' Modulo de declaraciones. Aca hay de todo.
'
Public Enum e_WorkingToolSubType
FishingRod = 1
FishingNet = 2
AlchemyScissors = 3
AlchemyCauldron = 4
CarpentryHacksaw = 5
FellingAxe = 6
SmithHammer = 7
MinerPickaxe = 8
TailorSewingbox = 9
End Enum
Public Enum e_PotionType
ModifiesAgility = 1
ModifiesStrength = 2
ModifiesHp = 3
ModifiesMp = 4
HealsPoison = 5
HealsParalysis = 6
ModifiesStamina = 7
ModifiesHeadRandom = 8
ModifiesSex = 9
TurnsYouInvisible = 10
'ScrollExperience = 11
'ScrollGold = 12
HealsAllStatusEffects = 13
'libre = 14
'ModifiesOxygen = 15
ModifiesMarriage = 16
ModifiesHeadRandomLegendary = 17
ModifiesParticlesTemporary = 18
'ResetSkills = 19
'ExpandsInventory = 20
SuicidePotion = 21
'ResetCharacter = 22
AppliesEffectOverTime = 23
End Enum
Public Enum e_AccionBarra
Runa = 1
Resucitar = 2
Intermundia = 3
GoToPareja = 5
Hogar = 6
CancelarAccion = 99
End Enum
Public Enum e_RoyalArmyRanks
NotEnlisted = 0
FirstHierarchy = 1
SecondHierarchy = 2
ThirdHierarchy = 3
FourthHierarchy = 4
FifthHierarchy = 5
SixthHierarchy = 6
SeventhHierarchy = 7
End Enum
Public Enum e_ChaosArmyRanks
NotEnlisted = 0
FirstHierarchy = 1
SecondHierarchy = 2
ThirdHierarchy = 3
FourthHierarchy = 4
FifthHierarchy = 5
SixthHierarchy = 6
SeventhHierarchy = 7
End Enum
Public Enum e_elecciones
HayGanador = 1
HayGanadorPeroAbandono = 2
HuboEmpate = 3
NoVotos = 4
AbroElecciones = 5
End Enum
Public Enum tMacro
dobleclick = 1
Coordenadas = 2
inasistidoPosFija = 3
borrarCartel = 4
End Enum
Public Enum e_WeaponType
eSword = 1
eDagger = 2
eBow = 3
eStaff = 4
eMace = 5
eThrowableAxe = 6
eAxe = 7
eKnuckle = 8
eFist = 9
eSpear = 10
eGunPowder = 11
eWeaponTypeCount
End Enum
Public Enum e_Facciones
Criminal = 0
Ciudadano = 1
Caos = 2
Armada = 3
concilio = 4
consejo = 5
End Enum
Public Enum e_InteractionResult
eInteractionOk
eOposingFaction
eCantHelpCriminal
eCantHelpCriminalClanRules
eCantHelpUsers
eDifferentTeam
End Enum
Public Enum e_AttackInteractionResult
eCanAttack
eRemoveSafe
eSameGroup
eSameGuild
eSameFaction
eDeathTarget
eDeathAttacker
eFightActive
eTalkWithMaster
eAttackerIsCursed
eMounted
eSameTeam
eNotEnougthPrivileges
eSameClan
eSafeArea
eCreatureInmunity
eInvalidPrivilege
eInmuneNpc
eOutOfRange
eOwnPet
eCantAttackYourself
eRemoveSafeCitizenNpc
eAttackCitizenNpc
eAttackSameFaction
eAttackPetSameFaction
End Enum
Public Enum e_DeleteSource
eNone
eDie
eKillecByNpc
eKilledByPlayer
eGMCommand
eResetPos
eReleaseAll
eFailToFindSpawnPos
eFailedToWarp
eRemoveWarpPets
eClearPlayerPets
eNewPet
eSummonNew
eStorePets
ePetLeave
eChallenge
eClearInvasion
eAiResetNpc
eClearHunt
End Enum
Public lstUsuariosDonadores() As String
Public Administradores As clsIniManager
Public Enum e_SoundIndex
MUERTE_HOMBRE = 11
MUERTE_MUJER = 74
FLECHA_IMPACTO = 65
CONVERSION_BARCO = 55
SOUND_COMIDA = 7
End Enum
Public SvrConfig As ServerConfig
Public Md5Cliente As String
Public PrivateKey As String
Public HoraActual As Integer
Public UltimoChar As String
Public LastRecordUsuarios As Integer
Public GlobalFrameTime As Long
Public EventoExpMult As Integer
Public EventoOroMult As Integer
Public CuentaRegresivaTimer As Byte
Public cuentaregresivaOrcos As Integer
Public PENDIENTE As Integer
Type t_EstadisticasDiarias
segundos As Double
MaxUsuarios As Integer
Promedio As Integer
End Type
Public DayStats As t_EstadisticasDiarias
Public aClon As New clsAntiMassClon
Public TrashCollector As New Collection
Public Const MAXSPAWNATTEMPS = 15
Public Const INFINITE_LOOPS As Integer = -1
Public Const FXSANGRE = 14
''
' The color of chats over head of dead characters.
Public Const CHAT_COLOR_DEAD_CHAR As Long = &HC0C0C0
''
' The color of yells made by any kind of game administrator.
Public Const CHAT_COLOR_GM_YELL As Long = &HF82FF
''
' Coordinates for normal sounds (not 3D, like rain)
Public Const NO_3D_SOUND As Byte = 0
Public Const iFragataFantasmal = 87 'ok
Public Const iTraje = 694 'Traje +25
Public Const iTrajeAltoNw = 1295 'Traje -25 alto
Public Const iTrajeBajoNw = 1296 'Traje -25 enano
Public Const iObjTraje = 197
Public Const iObjTrajeAltoNw = 199
Public Const iObjTrajeBajoNw = 200
Public Const iBarca = 84
Public Const iBarcaCiuda = 1265
Public Const iBarcaCrimi = 1266
Public Const iGalera = 85
Public Const iGaleraCiuda = 1267
Public Const iGaleraCrimi = 1268
Public Const iGaleon = 86
Public Const iGaleonCiuda = 1269
Public Const iGaleonCrimi = 1270
Public Const iBarcaArmada = 1273
Public Const iBarcaCaos = 1274
Public Const iGaleraArmada = 1271
Public Const iGaleraCaos = 1272
Public Const iGaleonArmada = 1264
Public Const iGaleonCaos = 1263
Public MapasInterdimensionales() As Integer
Public MapasEventos() As Integer
Public MapasNoDrop() As Integer
Public Enum e_Minerales
Coal = 3391
HierroCrudo = 192
PlataCruda = 193
OroCrudo = 194
LingoteDeHierro = 386
LingoteDePlata = 387
LingoteDeOro = 388
Blodium = 3787
FireEssence = 5179
WaterEssence = 5180
EarthEssence = 5181
WindEssence = 5182
End Enum
Public Enum e_JobsTypes
Miner = 1
Blacksmith = 2
Carpenter = 3
Woodcutter = 4
Fisherman = 5
Alchemist = 6
End Enum
Public Type t_LlamadaGM
Usuario As String * 255
Desc As String * 255
End Type
Public Type t_AttackInteractionResult
Result As e_AttackInteractionResult
TurnPK As Boolean
CanAttack As Boolean
End Type
Public Enum e_PlayerType
User = &H1
RoleMaster = &H2
Consejero = &H4
SemiDios = &H8
Dios = &H10
Admin = &H20
End Enum
Public Enum e_Class
Mage = 1 'Mago
Cleric 'Clérigo
Warrior 'Guerrero
Assasin 'Asesino
Bard 'Bardo
Druid 'Druida
Paladin 'Paladín
Hunter 'Cazador
Trabajador 'Trabajador
Pirat 'Pirata
Thief 'Ladron
Bandit 'Bandido
End Enum
Public Enum e_Ciudad
cUllathorpe = 1
cNix
cBanderbill
cLindos
cArghal
cArkhein
cForgat
cEldoria
cPenthar
End Enum
Public Enum e_Raza
Humano = 1
Elfo
Drow
Gnomo
Enano
Orco
End Enum
Public RaceHeightOffset(1 To Orco) As Integer
Enum e_Genero
Hombre = 1
Mujer
End Enum
Public Enum e_ClanType
ct_Neutral
ct_ArmadaReal
ct_LegionOscura
ct_GM
End Enum
Public Enum e_DamageType
eMeleeHit
eRangedHit
eMagicSpell
eDot
End Enum
Public Const LimiteNewbie As Byte = 12
Public Type t_Cabecera 'Cabecera de los con
Desc As String * 255
crc As Long
MagicWord As Long
End Type
Public MiCabecera As t_Cabecera
Public Const NingunEscudo As Integer = 2
Public Const NingunCasco As Integer = 2
Public Const NingunArma As Integer = 2
Public Const NoCart As Integer = 2
Public Const NoBackPack As Integer = 2
Public Const EspadaMataDragonesIndex As Integer = 402
Public Const CommonLuteIndex As Integer = 3986
Public Const MagicLuteIndex As Integer = 469
Public Const ElvenLuteIndex As Integer = 41
Public Const FireEcoIndex As Integer = 61
Public Const MauveFlashIndex As Integer = 62
Public Const MAXMASCOTASENTRENADOR As Byte = 7
Public Enum e_SoundEffects
LaughingScream = 1
Ctrl = 2
GmWarp = 3
PigHoink = 4
OpeningDoor = 5
OldLevelUp = 6
FoodCrunch = 7
MooingCow = 8
OldCryingWolf = 9
OldConnectedHit = 10
DieScreamMale = 11
OldConnectedHitNpcs = 12
OldTreeFell = 13
OldFishingReel = 14
OldMiningPickaxeHit = 15
OldInmo = 16
OldCeleridad = 17
OldCurarGraves = 18
OldFlechaElectrica = 19
OldResucitar = 20
BirdTweeting = 21
BirdTweeting2 = 22
OldWalkSound = 23
OldWalkSound2 = 24
SeatheWeapon = 25
BuzzingMosquitoes = 26
OldTormentaDeFuego = 27
OldCricket = 28
BirdTweeting3 = 29
PainGreatDragon = 30
PainGreatDragon2 = 31
PainGreatDragon3 = 32
DieGreatDragon = 33
PainScreamZombie = 34
BirdTweeting4 = 35
OldParalize = 36
OldShieldCling = 37
OldBardLute = 38
OldBardLuteClick = 39
OldBardLuteClick2 = 40
OldFabricateBlacksmith = 41
OldFabricateCarpenter = 42
OldClanHorn = 43
OldNewClanFounded = 44
OldClanWarDeclaration = 45
OldPotionChug = 46
PainScreamBunny = 47
OldJoinFaction = 48
OldBardLuteClick3 = 49
OldWaterWaves = 50
OldPanFlute = 51
BuzzingFlies = 52
ScreamEagle = 53
PainLeviathan = 54
OldNetReel = 55
HorseNeigh = 56
HorseNeigh2 = 57
BellsDongling = 58
OldPainLeviathan = 59 'sin uso
CrowsCawing = 60
CrowsCawing2 = 61
CrowsCawing3 = 62
OldTailorScissors = 63
OldTreeFellFail = 64
EventJoinBAO = 65
Bats = 66
Rooster = 67
HorseRide = 68
OldWalkSoundGrass = 69
HorseRide2 = 70
HorseRide3 = 71
WomanScream = 72
MonkeyScream2 = 73
DieScreamFemale = 74
DieScreamMale2 = 75
KnockKnock = 76
PoteciandoFalling = 77
PainScreamBear = 78
PainScreamGolem = 79
RainFall = 80
WolfHowling = 81
FoodCrunch2 = 82
MonkeyScream = 83
MonkeyLaugh = 84
MonkeyLaugh2 = 85
BuzzingMosquitoLong = 86
WaterWavesRoaring = 87
WaterWavesRoaring2 = 88
DieBear = 89
Sheep = 90
Goat = 91 'messi
MonkeyMacabreLaugh = 92
Pigeon = 93
WalkGravel = 94
QuackingDuck = 95
QuackingDuck2 = 96
BarkingDog = 97
PigHoink2 = 98
PretorianLaugh = 99
DieDaemon = 100
FrogCroack = 101
FrogCroack2 = 102
'raro = 103
Coughing = 104
Thunder = 105
BAOLevelUp = 106
HowlingWind = 107
HowlingWind2 = 108
OminousEcho = 109
OldRemoverParalisis = 110
OldMisilMagico = 111
OldFuerza = 112
OldRayoElemental = 113
OldDardoMagico = 114
OldFabricatePotions = 115
Flames = 116
OldResurrectedBypriest = 117
RandomScream = 118
PainScreamMale = 119
HolyChants = 120
'raro = 121
BAOLegionHorn = 122
BAOLegionHorn2 = 123
Lobo_Sound = 124
RatsSqueack = 125
BAOApunialar = 126
HissSerpent = 127
HissSerpetn2 = 128
HowlingWolves = 129
Sheep2 = 130
Crickets = 131
Dropeo_Sound = 132
OldPainScreamMedusa = 133
'feo = 134
NewPotionChug = 135
SwordClash = 136
Gallo_Sound = 137
PainScreamBear2 = 138
BAOLeaviathan = 139
'Sin uso = 140
PainScreamLynn = 141
DieCock = 142
'feo = 143
MacabreFemaleLaughing = 144
MacableDemonLaughing = 145
HolyCrescendo = 146
HolyCrescendo2 = 147
HolyCrescendo3 = 148
BAOWalkAstaroth = 149
BellRing = 150
WaterMoving = 151
DruidFlute = 152
DruidFlute2 = 153
DruidFlute3 = 154
DieHuscar = 155
MacabreDemonLaugh = 156
Fart = 157
MeditationSound = 158
'Libre = 159
'Libre = 160
Casamiento_sound = 161
OldApocalipsis = 162
'Libre = 163 to 167
PainScreamUndead = 168
'Libre = 169
'Libre = 170
VaultOpeningSound = 171
'Libre = 172 to 179
NewApunialar2 = 180
'Libre = 181 to 187
'Repetido OldRemoverParalisis = 188
'Libre = 189
'Libre = 190
RainStart = 191
RainFinishing = 192
'feo = 193
RainMiddle = 194
RainMiddle2 = 195
'Libre = 196
OldWalkDirt = 197
OldWalkDirt2 = 198
'raro = 199
OldWalkSand = 200
OldWalkSand2 = 201
BARCA_SOUND = 202
BAOEquipBodyArmour = 203
BAONpcWalkOnSand = 204
BAONpcWalkOnSand2 = 205
'raro = 206
'raro = 207
BaoEquipWeapon = 208
WaterDrop = 209
'raro = 210
'raro = 211
'Libre = 212 to 229
TypeWriter = 230
AlientoDeDragon = 231
'Libre = 232 to 237
DivineBloodActivation = 238
'Libre = 239 to 248
DovuArrow = 249
'Libre = 250
WarriorWarScream = 251
'Libre = 252 to 253
AtomicBomb = 264
'Libre = 265 TO 311
GunShot2 = 312
'Libre 313 TO 344
PainScreamNagas = 345
'Libre = 346
'Libre = 347
'Libre = 348
WitheringBodySound = 349
'Libre = 350 to 357
WitheringBodySound2 = 358
'Libre 359 to 374
Fireworks = 375
Fireworks2 = 376
'Libre = 377 to 379
Chains = 380
'Libre = 381 to 399
Thunder3 = 400
Thunder4 = 401
Thunder5 = 402
Thunder6 = 403
Thunder7 = 404
Thunder8 = 405
Thunder9 = 406
'Libre = 407 to 447
FulgorIgneo = 448
'raro = 449
'Libre = 450
'raro = 451
'Libre = 452
OpenChest = 453
'Libre = 454 to 462
RuneArrival = 463
'Libre = 464 to 480
IAOPotionChug = 481
'Libre = 482 to 499
MenuSelect = 500
MenuSelect2 = 501
'Libre = 502 to 519
OldDescargaElectrica = 520
'Libre = 521
IngameDirectMessage = 522
'Libre = 523 to 527
RUNE_SOUND = 528
'Libre = 529 to 553
NewLevelUp = 554
FlareActivation = 555
'Repetido = 1152
SnowStorm = 2000
'Imperium 2028 - 2186
FailToExtractOre = 2185
NewApunialar = 2187
MortarLaunch = 2222
RoarDinosaur = 2323
RoarVelociraptor = 2525
GunShot = 2541
DogSuffering = 2626
Aturdir = 2627
ResplandoIgneo = 2628
CronicaTv = 9999
CupDice = 10000
End Enum
'Meditaciones
Public MeditationLevel1to12 As Integer
Public MeditationLevel13to17 As Integer
Public MeditationLevel18to24 As Integer
Public MeditationLevel25to28 As Integer
Public MeditationLevel29to32 As Integer
Public MeditationLevel33to36 As Integer
Public MeditationLevel37to39 As Integer
Public MeditationLevel40to42 As Integer
Public MeditationLevel43to44 As Integer
Public MeditationLevel45to46 As Integer
Public MeditationLevelMax As Integer
'Meditaciones criminales
Public MeditationCriminalLevel1to12 As Integer
Public MeditationCriminalLevel13to17 As Integer
Public MeditationCriminalLevel18to24 As Integer
Public MeditationCriminalLevel25to28 As Integer
Public MeditationCriminalLevel29to32 As Integer
Public MeditationCriminalLevel33to36 As Integer
Public MeditationCriminalLevel37to39 As Integer
Public MeditationCriminalLevel40to42 As Integer
Public MeditationCriminalLevel43to44 As Integer
Public MeditationCriminalLevel45to46 As Integer
Public Enum e_GraphicEffects 'Image sequenced fxs like paralizar PrepareMessageCreateFX() or family of functions CreateFX()
OldGmWarp = 1
OldCurarVeneno = 2
OldFuerza = 3
ApocalipsisAtomicBomb = 4
AntraxAtomicBomb = 5
ToxinRed = 6
OldTormentaDeFuego = 7
OldParalizar = 8
OldCurarGraves = 9
OldMisilMagico = 10
OldDescargaElectrica = 11
OldInmovilizar = 12
OldApocalipsis = 13
OldApunialar = 14
OldFuegoFatuo = 15
'Libre = 16
ToxinPurple = 17
ApocalipsisRealista = 18
BubblesBlue = 19
JuicioFinal = 20
TormentaDeFuegoRealista = 21
BubblesRed = 22
BubblesPurpleCircle = 23
HaloExpansion = 24
OldFlechaElectrica = 25
'Libre = 26
'Libre = 27
'Libre = 28
'Libre = 29
ModernGmWarp = 30
'Libre = 31
'Libre = 32
'Libre = 33
'Libre = 34
'Libre = 35
'Libre = 36
'Libre = 37
'Libre = 38
'Libre = 39
'Libre = 40
'Libre = 41
'Libre = 42
ExplosionMulticolor = 43
'Libre = 44
BansheeLament = 45
Invisibilidad = 46
'Libre = 47
'Libre = 48
'Libre = 49
BombaMagica = 50
'Libre = 51
'Libre = 52
'Libre = 53
'Libre = 54
ExpansiveGreen = 55
Petrificar = 56
ExpansiveGreen2 = 57
ExpansiveGreen3 = 58
ExpansiveGreen4 = 59
ExpansiveGreen5 = 60
ExpansiveGreen6 = 61
TorpezaBAO = 62
'Libre = 63
'Libre = 64
RisingSmokePurple = 65
'Libre = 66
'Libre = 67
'Libre = 68
'Libre = 69
'Libre = 70
'Libre = 71
'Libre = 72
RisingSmokeGray = 73
RisingSmokeGray2 = 74
FractalDiscoBall = 75
TormentaDeFuegoBAO = 76
SmokeWavesPurple = 77
'Libre = 78
'Libre = 79
'Libre = 80
ParalizarBAO = 81
'Libre = 82
'Libre = 83
'Libre = 84
SomeExplosionGreen = 85
StarDrop = 86
GoldDrop = 87 'IAO
ShieldClash = 88 'IAO
ModernApunialar = 89 'IAO
HitWiff = 90 'IAO
MacabreRisingSkullPurple = 91
'MacabreRisingSkullPurple = 92 duplicado
SummonEarthElementalBAO = 93
FireworksRainbow = 94
FireworksGreen = 95
FireworksPurple = 96
FireworksPurple2 = 97
FireworksViolet = 98
FireworksRed = 99
FireworksBlue = 100
TormentaDeFuegoBAO2 = 101
FuerzaBAO = 102
CurarHeridasCriticasBAO = 103
RayoElemental = 104
ResucitarBAO = 105
LevelUp = 106
AscendingHazeGreen = 107
WaterSplash = 108
WaterSplash2 = 109
WaterFallout = 110
WaterFountainRising = 111
ToxinaBAO = 112
ToxinaBAO2 = 113
VortexGreen = 114
MeditateSmallPurple = 115 'lvl 8-12
MeditateMediumPurple = 116 'post newbie
MeditateLargeBlue = 117 '+25
MeditateXLYellow = 118 '+35
MeditateXXLYellow = 119 'old lvl 45
MeditateXXLSwordGray = 120
ApocalipsisBAO = 121
EspirituTigreTurquesa = 122
EspirituTigreVioleta = 123
EspirituTigreRojo = 124
EspirituTigreAmarillo = 125
TornadoTurquesa = 126
EspirituDragonTurquesa = 127
EspirituCalaveraTurquesa = 128
EspirituDemonioTurquesa = 129
TornadoVioleta = 130
EspirituDragonVioleta = 131
EspirituCalaveraVioleta = 132
EspirituDemonioVioleta = 133
TornadoRojo = 134
EspirituDragonRojo = 135
EspirituCalaveraRojo = 136
EspirituDemonioRojo = 137
TornadoAmarillo = 138
EspirituDragonAmarillo = 139
EspirituCalaveraAmarillo = 140
EspirituDemonioAmarillo = 141
'Roto = 142
Restauracion = 143 'tute recrecimiento
Restauracion2 = 144 'tute restauracion
ShieldWall = 145 'tute taunt
BubbleShield = 146 'tute cleric shield
Restauracion3 = 147
BardSongRed = 148 'tute bard song
BardSongGreen = 149 'tute bard song
'Roto = 150
MeditateXXLDarkGray = 151
MeditateXXLDarkRed = 152
Runa = 167
LogeoLevel1 = 177
TpVerde = 229
End Enum
Public Enum e_ParticleEffects 'particle sequenced fxs like fuerza2 and celeridad2 PrepareMessageParticleFX()
WaterFountain = 1
Starburst = 2
FireJest = 3
LargeWaterFountain = 4
HolyParticles = 5
Incinerar = 6
Waterfall = 7
Rain = 8
Insects = 9
Smoke = 10
GreatFire = 11
CurarCrimi = 12
SnowRain = 13
FireWall = 15
Intermundia = 16
HaloGold = 17
HaloGreen = 18
'Feo libre = 19
SmokeGreen = 20
Resucitar = 22
Corazones = 23
Bubbles = 24
ElectricBallWhite = 25
'Feo libre = 26
'Feo libre = 27
SmokeWallGreen = 28
MacabreSkullRed = 29
MacabreSkullWhite = 30
Marked = 31
PoisonGas = 32
WaterSprinkle = 33
SmokeGreenSmall = 34
Candelabro = 35
HolyParticleEnormous = 36
SmokeRedMedium = 37
SmokeHolyMedium = 38
'Feo libre = 39
'Feo libre = 40
'Feo libre = 41
'Feo libre = 42
'Feo libre = 43
'Feo libre = 44
FireVolcano = 45
ElectricBallYellow = 46
SlowHourGlass = 47
ElectricBallPurple = 48
ElectricBallBlue = 49
'Feo libre = 50
'Feo libre = 51
'Feo libre = 52
'Feo libre = 53
'Feo libre = 54
'Feo libre = 55
SnowFall = 56
SnowFall2 = 57
Rain2 = 58
SandStorm = 59
'Feo libre = 60
'Feo libre = 61
'Feo libre = 62
'Feo libre = 63
'Feo libre = 64
'Feo libre = 65
'Feo libre = 66
'Feo libre = 67
JuicioFinal = 68
'Feo libre = 69
'Feo libre = 70
SmokeYellowMedium = 71
'Feo libre = 72
'Feo libre = 73
MacabreSkullBlue = 74
'Feo libre = 75
Fuerza2 = 76
HaloRed = 77
'Feo libre = 78
'Feo libre = 79
CorazonesGreen = 80
'Feo libre = 81
'Feo libre = 82
ElectricBallRed = 83
'Feo libre = 84
'Feo libre = 85
'Feo libre = 86
Fog = 87
'Feo libre = 88
'Feo libre = 89
'Feo libre = 90
'Feo libre = 91
'Feo libre = 92
'Feo libre = 93
'Feo libre = 94
'Feo libre = 95
FireVolcanoSmall = 96
'Feo libre = 97
'Feo libre = 98
'Feo libre = 99
'Feo libre = 100
'Feo libre = 101
'Feo libre = 102
'Feo libre = 103
'Feo libre = 104
CauldronGasGreen = 105
'Feo libre = 106
'Feo libre = 107
'Feo libre = 108
'Feo libre = 109
'Feo libre = 110
'Feo libre = 111
'Feo libre = 112
'Feo libre = 113
'Feo libre = 114
'Feo libre = 115
'Feo libre = 116
'Feo libre = 117
FireworksRed = 118
FireWorksRedFast = 119
FireWorkVioletFast = 120
FireWorkGreenFast = 121
FireWorkYellowWide = 122
'Feo libre = 123
'Feo libre = 124
'Feo libre = 125
'Feo libre = 126
'Feo libre = 127
'Feo libre = 128
'Feo libre = 129
'Feo libre = 130
'Feo libre = 131
'Feo libre = 132
'Feo libre = 133
'Feo libre = 134
'Feo libre = 135
'Feo libre = 136
'Feo libre = 137
'Feo libre = 138
'Feo libre = 139
'Feo libre = 140
FireWorkGiantExplosion = 141
FireWorkGiantExplosionGreen = 142
FireWorkGiantExplosionYellow = 143
FireWorkGiantExplosionRed = 144
'Feo libre = 145
'Feo libre = 146
'Feo libre = 147
'Feo libre = 148
'Feo libre = 149
'Feo libre = 150
'Feo libre = 151
'Feo libre = 152
'Feo libre = 153
'Feo libre = 154
'Feo libre = 155
'Feo libre = 156