Ir para conteúdo
Faça parte da equipe! (2024) ×
Conheça nossa Beta Zone! Novas áreas a caminho! ×
  • Quem está por aqui   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
  • 0

Alguem com monsterDB funcionando?


deamondevil
 Compartilhar

Pergunta

Ja peguei um monte, aparentemente o bot loga normal, carrega o plugin, carrega a tabela de monstro, porem não esta trocando de armas para a raça ou elemento desejado, não só em arma, em skills também para determinados monstros, segue exemplo

 

###### Trocar de armas automatico ######

 

monsterEquip {

target_Element Water

equip_rightHand VVS Punho [Wind]

}

 

monsterEquip {

target_Element Wind

equip_rightHand VVS Punho [Earth]

}

 

monsterEquip {

target_Element Fire

equip_rightHand VVS Punho [ice]

}

 

monsterEquip {

target_Element Earth

equip_rightHand VVS Punho [Fire]

}

 

monsterEquip {

target_notElement Earth,Wind,Ice,Fire

equip_rightHand Punho

 

}

Link para o comentário
Compartilhar em outros sites

1 resposta a esta questão

Posts Recomendados

  • 0

Bom Galera RESOLVI, ou seja dei meu jeito, ta funcionando que é uma beleza

 

1- abre bloco de notas e cole esse comando e salve como arquivo "monsterDB.pl"

 

# # # # # # # # # # # # # # # # # # # # # # # # # # # #

# MonsterDB plugin para OpenKore por consulta em diversos sites e desculpem a tradução, usei o google mesmo

#

#

# Este plugin estende todas as funções que usam 'checkMonsterCondition'.

# Basicamente estas são AttackSkillSlot, equipAuto, AttackComboSlot, monsterSkill.

#

# Após novas verificações são possíveis:

#

# Target_Element (lista)

# Target_notElement (lista)

# Target_Race (lista)

# Target_notRace (lista)

# Target_size (lista)

# Target_notSize (lista)

# Target_hpLeft (intervalo)

#

# Em equipAuto você tem que deixar a parte target_,

# Isso é devido inconsistência alguma codificação na funtions.pl

#

# Você pode usar monsterEquip se você acha que equipAuto é reduzir a velocidade.

# Ele suporta a sintaxe equipamento novo. Ela é orientada a eventos e é chamado

# Quando um monstro: é atacado, as mudanças de status, elemento alterações

#

# Nota: Ele irá verificar todos os blocos monsterEquip mas respeita prioridade.

# Se você verificar no primeiro bloco de elemento fogo e, no segundo

# Para a raça Humanóide e em ambos você usa as setas diferentes, mas no

# Bloco Humanóide você usar um arco, que levará as setas formar a primeira

# Correspondência bloco e equipar o arco desde o bloco de fogo não especificou.

#

#

# Nota: monsterEquip irá modificar seu attackEquip_ {} ranhura para não ser surpreendido

# Sobre ter attackEquips outros como você definir antes.

#

# Tenha cuidado com a direita e da esquerda os slots não vai ser verificado para

# Armas de duas mãos, que podem entrar em conflito.

#

# Exemplo:

# {MonsterEquip

# Terra target_Element

# Equip_arrow Flecha de Fogo

#}

#

# Para os nomes dos elementos apenas rolar um pouco para baixo e você vai encontrá-lo.

# Você pode verificar Lvls elemento também, por exemplo. target_Element Dark

#

# $ Revision: 5549 $

# $ Id: monsterDB.pl 5549 2007/03/21 00:55:47 Z h4rry_84 $

# # # # # # # # # # # # # # # # # # # # # # # # # # # #

 

package monsterDB;

 

use strict;

use Plugins;

use Globals qw(%config %monsters $accountID %equipSlot_lut @ai_seq @ai_seq_args);

use Settings;

use Log qw(message warning error debug);

use Misc qw(bulkConfigModify);

use Translation qw(T TF);

use Utils;

 

 

Plugins::register('monsterDB', 'extends Monster infos', \&onUnload);

my $hooks = Plugins::addHooks(

['checkMonsterCondition', \&extendedCheck, undef],

['packet_skilluse', \&onPacketSkillUse, undef],

['packet/skill_use_no_damage', \&onPacketSkillUseNoDamage, undef],

['packet_attack', \&onPacketAttack, undef],

['attack_start', \&onAttackStart, undef],

['changed_status', \&onStatusChange, undef],

);

 

 

my @monsterDB;

my @element_lut = qw(Neutral Water Earth Fire Wind Poison Holy Dark Sense Undead);

my @race_lut = qw(Formless Undead Brute Plant Insect Fish Demon Demi-Human Angel Dragon);

my @size_lut = qw(Small Medium Large);

my %skillChangeElement = qw(

NPC_CHANGEWATER Water

NPC_CHANGEGROUND Earth

NPC_CHANGEFIRE Fire

NPC_CHANGEWIND Wind

NPC_CHANGEPOISON Poison

NPC_CHANGEHOLY Holy

NPC_CHANGEDARKNESS Dark

NPC_CHANGETELEKINESIS Sense

);

 

debug ("MonsterDB: Finished init.\n",'monsterDB',2);

loadMonDB(); # Load MonsterDB into Memory

 

sub onUnload {

Plugins::delHooks($hooks);

@monsterDB = undef;

}

 

sub loadMonDB {

@monsterDB = undef;

my @temp;

debug ("MonsterDB: Loading DataBase\n",'monsterDB',2);

my $file = Settings::getTableFilename('monsterDB.txt');

error ("MonsterDB: cannot load $file\n",'monsterDB',0) unless (-r $file);

{ open my $fp, '<', $file; @temp = <$fp> }

my $i = 0;

foreach my $line (@temp) {

next unless ($line =~ /(\d{4})\s+(\d+)\s+(\d)\s+(\d)\s+(\d+)/);

$monsterDB[(int($1) - 1000)] = [$2,$3,$4,$5];

$i++;

}

message TF("%d monsters in database\n", $i), 'monsterDB';

}

 

sub extendedCheck {

my (undef, $args) = @_;

 

return 0 if !$args->{monster} || $args->{monster}->{nameID} eq '';

 

my $monsterInfo = $monsterDB[(int($args->{monster}->{nameID}) - 1000)];

 

if (!defined $monsterInfo) {

debug("monsterDB: Monster {$args->{monster}->{name}} not found\n", 'monsterDB', 2);

return 0;

} #return if monster is not in DB

 

 

my $element = $element_lut[($monsterInfo->[3] % 10)];

my $element_lvl = int($monsterInfo->[3] / 20);

my $race = $race_lut[$monsterInfo->[2]];

my $size = $size_lut[$monsterInfo->[1]];

 

if ($args->{monster}->{element} && $args->{monster}->{element} ne '') {

$element = $args->{monster}->{element};

debug("monsterDB: Monster $args->{monster}->{name} has changed element to $args->{monster}->{element}\n", 'monsterDB', 3);

}

 

if ($args->{monster}->statusActive('BODYSTATE_STONECURSE, BODYSTATE_STONECURSE_ING')) {

$element = 'Earth';

debug("monsterDB: Monster $args->{monster}->{name} is petrified changing element to Earth\n", 'monsterDB', 3);

}

 

if ($args->{monster}->statusActive('BODYSTATE_FREEZING')) {

$element = 'Water';

debug("monsterDB: Monster $args->{monster}->{name} is frozen changing element to Water\n", 'monsterDB', 3);

}

 

if ($config{$args->{prefix} . '_Element'}

&& (!existsInList($config{$args->{prefix} . '_Element'},$element)

&& !existsInList($config{$args->{prefix} . '_Element'},$element.$element_lvl))) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_notElement'}

&& (existsInList($config{$args->{prefix} . '_notElement'},$element)

|| existsInList($config{$args->{prefix} . '_notElement'},$element.$element_lvl))) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_Race'}

&& !existsInList($config{$args->{prefix} . '_Race'},$race)) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_notRace'}

&& existsInList($config{$args->{prefix} . '_notRace'},$race)) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_Size'}

&& !existsInList($config{$args->{prefix} . '_Size'},$size)) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_notSize'}

&& existsInList($config{$args->{prefix} . '_notSize'},$size)) {

return $args->{return} = 0;

}

 

if ($config{$args->{prefix} . '_hpLeft'}

&& !inRange(($monsterInfo->[0] + $args->{monster}->{deltaHp}),$config{$args->{prefix} . '_hpLeft'})) {

return $args->{return} = 0;

}

 

return 1;

}

 

sub onPacketSkillUse { monsterHp($monsters{$_[1]->{targetID}}, $_[1]->{disp}) if $_[1]->{disp} }

 

sub onPacketSkillUseNoDmg {

my (undef,$args) = @_;

return 1 unless $monsters{$args->{targetID}} && $monsters{$args->{targetID}}{nameID};

if (

$args->{targetID} eq $args->{sourceID} && $args->{targetID} ne $accountID

&& $skillChangeElement{$args->{skillID}}

) {

$monsters{$args->{targetID}}{element} = $skillChangeElement{$args->{skillID}};

monsterEquip($monsters{$args->{targetID}});

return 1;

}

}

 

sub onPacketAttack { monsterHp($monsters{$_[1]->{targetID}}, $_[1]->{msg}) if $_[1]->{msg} }

 

sub monsterHp {

my ($monster, $message) = @_;

return 1 unless $monster && $monster->{nameID};

 

return 1 unless my $monsterInfo = $monsterDB[(int($monster->{nameID}) - 1000)];

$$message =~ s~(?=\n)~TF(" (HP: %d/%d)", $monsterInfo->[0] + $monster->{deltaHp}, $monsterInfo->[0])~se;

}

 

sub onAttackStart {

my (undef,$args) = @_;

monsterEquip($monsters{$args->{ID}});

}

 

sub onStatusChange {

my (undef, $args) = @_;

 

return unless $args->{changed};

my $actor = $args->{actor};

return unless (UNIVERSAL::isa($actor, 'Actor::Monster'));

my $index = binFind(\@ai_seq, 'attack');

return unless defined $index;

return unless $ai_seq_args[$index]->{target} == $actor->{ID};

monsterEquip($actor);

}

 

sub monsterEquip {

my $monster = shift;

return unless $monster;

my %equip_list;

 

my %args = ('monster' => $monster);

my $slot;

 

for (my $i=0;exists $config{"monsterEquip_$i"};$i++) {

$args{prefix} = "monsterEquip_${i}_target";

if (extendedCheck(undef,\%args)) {

foreach $slot (%equipSlot_lut) {

if ($config{"monsterEquip_${i}_equip_$slot"}

&& !$equip_list{"attackEquip_$slot"}

&& defined Actor::Item::get($config{"monsterEquip_${i}_equip_$slot"})) {

$equip_list{"attackEquip_$slot"} = $config{"monsterEquip_${i}_equip_$slot"};

debug "monsterDB: using ".$config{"monsterEquip_${i}_equip_$slot"}."\n",'monsterDB';

}

}

}

}

foreach (keys %equip_list) {

$config{$_} = $equip_list{$_};

}

Actor::Item::scanConfigAndEquip('attackEquip');

}

 

1;

 

 

 

 

 

2 - Em seguida coloque este arquivo na pasta C:\ SUA PASTA DO BOT...Pluguins\monsterDB\monsterDB.pl

 

3 - Faça outro arquivo no bloco de notas, criem o BANCO DE DADOS dos monstros e salve com o nome "monsterDB.txt"

 

1001 1109 0 4 23

1002 50 1 3 21

1003 10 0 4 22

1004 169 0 4 24

1005 155 0 2 27

1006 0 0 0 1

1007 63 0 4 22

1008 427 0 4 22

1009 92 1 2 24

1010 95 1 3 22

1011 67 0 4 24

1012 133 1 5 21

1013 405 1 2 22

1014 327 1 3 21

1015 534 1 1 29

1016 3040 1 1 29

1017 170 1 4 27

1018 595 0 4 24

1019 531 2 2 23

1020 405 1 3 62

1021 583 1 4 27

1022 28600 2 0 40

1023 1400 1 7 22

1024 426 1 3 22

1025 471 1 2 22

1026 2872 1 1 29

1027 600 1 2 22

1028 2334 1 1 29

1029 4828 2 6 27

1030 1109 1 2 25

1031 344 1 3 25

1032 5272 1 1 29

1033 693 1 3 43

1034 2152 1 5 41

1035 5242 0 4 44

1036 5118 1 11 49

1037 4929 1 2 25

1038 415400 1 1 89

1039 668000 2 6 67

1040 3900 2 0 60

1041 5176 1 1 49

1042 530 0 4 24

1043 1452 0 5 22

1044 3952 1 5 41

1045 6900 1 5 41

1046 249000 1 6 67

1047 420 0 0 60

1048 48 0 4 27

1049 80 0 2 23

1050 83 0 2 23

1051 126 0 0 60

1052 198 1 4 22

1053 170 1 4 27

1054 583 1 4 27

1055 570 2 3 22

1056 641 0 2 22

1057 879 0 2 22

1058 926 1 4 23

1059 212000 0 4 84

1060 1619 2 2 22

1061 4437 2 6 68

1062 69 1 3 26

1063 60 0 2 60

1064 1648 1 1 29

1065 9952 2 5 61

1066 1017 0 5 21

1067 1620 0 5 21

1068 660 0 3 41

1069 4299 2 5 41

1070 507 0 5 21

1071 1676 1 1 29

1072 1141 1 6 83

1073 2451 0 5 21

1074 920 0 5 21

1075 77 0 5 22

1076 234 1 1 29

1077 665 1 3 25

1078 10 0 3 22

1079 10 0 3 22

1080 10 0 3 22

1081 10 0 3 22

1082 10 0 3 22

1083 20 0 3 26

1084 15 0 3 22

1085 15 0 3 22

1086 126000 2 4 43

1087 295700 2 7 42

1088 3016 1 4 22

1089 5065 1 5 21

1090 2415 1 3 21

1091 2400 0 4 24

1092 12240 1 2 22

1093 1800 0 2 60

1094 495 2 4 21

1095 688 0 4 22

1096 55000 1 8 86

1097 420 0 0 60

1098 12359 1 8 26

1099 4382 2 4 25

1100 1117 2 4 25

1101 8578 0 6 27

1102 5415 1 7 27

1103 1424 0 2 22

1104 817 0 2 22

1105 760 0 4 22

1106 1716 1 2 23

1107 164 0 2 23

1108 19192 1 5 81

1109 7360 0 6 27

1110 2697 0 6 27

1111 1162 0 2 47

1112 326666 1 1 29

1113 55 1 3 23

1114 1044 0 4 44

1115 152000 2 2 23

1116 633 1 0 48

1117 16506 2 1 89

1118 2092 2 3 22

1119 2023 1 2 23

1120 73300 1 6 88

1121 2252 0 6 22

1122 1176 1 7 24

1123 1034 1 7 23

1124 1034 1 7 25

1125 1359 1 7 22

1126 1952 1 7 21

1127 2282 1 2 42

1128 659 1 4 22

1129 1939 0 0 83

1130 3581 1 0 43

1131 12450 2 7 84

1132 19276 2 1 29

1133 3893 1 7 44

1134 2179 1 7 45

1135 2179 1 7 43

1136 3503 1 7 41

1137 2462 1 7 42

1138 3195 0 6 21

1139 2472 1 4 22

1140 4214 2 7 23

1141 2087 0 3 41

1142 3518 0 3 21

1143 3222 0 6 68

1144 5034 0 5 41

1145 1109 0 2 42

1146 2585 1 2 27

1147 169000 2 4 82

1148 22408 1 6 40

1149 7431 2 2 43

1150 120000 1 6 63

1151 3745 2 0 25

1152 2278 1 1 29

1153 1568 1 1 29

1154 8289 1 7 43

1155 6881 1 9 22

1156 5747 1 9 24

1157 445997 2 7 67

1158 3347 1 5 41

1159 188000 2 2 60

1160 733 0 4 22

1161 354 0 3 61

1162 1950 0 3 22

1163 8613 2 7 47

1164 3089 1 7 27

1165 3413 1 0 62

1166 2092 2 2 42

1167 182 0 2 22

1168 6354 2 7 23

1169 2872 1 1 29

1170 5628 1 6 21

1171 1245 0 4 42

1172 2047 0 4 42

1173 1217 0 4 42

1174 538 0 4 24

1175 284 0 2 27

1176 894 0 4 22

1177 2585 1 7 27

1178 1109 1 7 23

1179 1796 0 6 68

1180 9466 1 2 63

1181 1000 2 9 89

1182 15 0 3 22

1183 67 0 4 24

1184 30 0 4 22

1185 1796 0 1 28

1186 5040 0 6 48

1187 2 1 0 20

1188 3520 1 1 29

1189 7440 1 7 22

1190 393000 2 7 82

1191 6120 1 0 60

1192 10999 2 1 89

1193 10647 1 0 60

1194 6075 1 4 42

1195 11638 0 0 60

1196 8691 1 1 69

1197 11280 1 1 69

1198 9660 1 7 87

1199 3620 0 3 24

1200 18300 1 7 60

1201 9572 2 6 40

1202 22729 2 7 40

1203 33350 2 0 87

1204 29900 1 0 67

1205 28980 2 0 47

1206 18960 1 5 41

1207 9500 1 0 62

1208 8170 1 6 24

1209 4720 0 2 45

1210 6088 1 4 23

1211 5562 0 4 23

1212 4221 1 4 60

1213 6890 2 7 43

1214 4278 0 2 23

1215 6136 1 3 24

1216 7256 1 5 25

1219 36140 2 7 87

1220 1716 1 2 23

1221 2092 2 2 42

1222 6890 2 7 43

1223 1400 1 7 22

1224 665 1 3 25

1225 4278 0 2 23

1226 3893 1 7 44

1227 1176 1 7 24

1228 3347 1 5 41

1229 63 0 4 22

1230 427 0 4 22

1231 595 0 4 24

1232 420 0 0 60

1233 531 2 2 23

1234 879 0 2 22

1235 1400 1 7 22

1236 420 0 0 60

1237 688 0 4 22

1238 733 0 4 22

1239 760 0 4 22

1240 80 0 2 23

1241 83 0 2 23

1242 742 1 3 41

1243 3163 2 2 60

1244 3581 1 0 43

1245 1176 1 7 24

1246 2090 0 7 46

1247 10 1 3 66

1248 2820 1 0 60

1249 3450 1 0 60

1250 4950 1 7 23

1251 240000 2 0 84

1252 197000 2 2 81

1253 3950 1 6 64

1254 1020 0 2 24

1255 4120 0 2 22

1256 3240 0 2 47

1257 7600 1 1 47

1258 1750 0 7 25

1259 27800 2 2 84

1260 7500 1 6 67

1261 2980 0 2 24

1262 62600 2 9 43

1263 4820 1 6 64

1264 12300 1 7 41

1265 950 0 7 60

1266 1452 0 5 22

1267 5200 1 6 44

1268 57870 2 0 87

1269 11050 1 0 42

1270 18600 2 0 80

1271 6962 1 2 21

1272 360000 2 6 89

1273 2000 1 7 42

1274 5300 2 0 80

1275 10000 1 7 60

1276 5250 1 6 47

1277 3632 1 0 43

1278 18700 2 0 80

1279 2300 0 4 22

1280 2490 1 7 44

1281 3850 0 2 60

1282 2560 0 7 23

1283 32600 2 2 63

1284 5000 2 3 21

1285 28634 2 7 80

1286 30214 2 7 80

1287 15670 0 4 22

1288 68430 0 4 22

1289 54331 2 4 82

1290 17043 1 1 29

1291 42131 2 1 89

1292 31865 0 6 27

1293 13109 0 4 24

1294 12911 1 4 22

1295 59489 2 6 60

1296 17935 1 7 44

1297 40599 1 1 49

1298 13917 1 1 29

1299 19735 1 8 24

1300 14140 0 4 22

1301 11848 0 6 27

1302 101487 2 6 89

1303 12834 0 4 24

1304 11628 2 4 25

1305 22598 2 4 25

1306 24223 2 2 22

1307 64512 1 6 63

1308 13838 1 7 44

1309 13699 0 0 83

1310 57991 2 2 43

1311 21331 2 2 42

1312 320700 2 2 42

1313 11347 1 7 20

1314 8228 1 2 40

1315 15861 1 7 44

1316 12099 1 2 42

1317 9114 1 2 21

1318 11020 1 2 43

1319 8636 1 2 41

1320 26623 2 6 60

1321 8368 1 4 44

1322 9045 1 2 42

1323 9999 1 2 61

1324 1 1 1 1

1325 1 1 1 1

1326 1 1 1 1

1327 1 1 1 1

1328 1 1 1 1

1329 1 1 1 1

1330 1 1 1 1

1331 1 1 1 1

1332 1 1 1 1

1333 1 1 1 1

1334 1 1 1 1

1335 1 1 1 1

1336 1 1 1 1

1337 1 1 1 1

1338 1 1 1 1

1339 1 1 1 1

1340 1 1 1 1

1341 1 1 1 1

1342 1 1 1 1

1343 1 1 1 1

1344 1 1 1 1

1345 1 1 1 1

1346 1 1 1 1

1347 1 1 1 1

1348 1 1 1 1

1349 1 1 1 1

1350 1 1 1 1

1351 1 1 1 1

1352 1 1 1 1

1353 1 1 1 1

1354 1 1 1 1

1355 1 1 1 1

1356 1 1 1 1

1357 1 1 1 1

1358 1 1 1 1

1359 1 1 1 1

1360 1 1 1 1

1361 1 1 1 1

1362 1 1 1 1

1363 1 1 1 1

1364 18251 1 7 44

1365 22680 2 0 60

1366 24324 2 0 83

1367 8252 0 6 43

1368 8071 0 3 62

1369 8054 2 2 43

1370 16955 1 6 67

1371 16845 0 8 66

1372 11077 2 2 63

1373 303383 2 6 67

1374 17281 1 6 67

1375 18557 1 0 60

1376 16599 1 6 64

1377 21592 2 7 80

1378 7259 0 6 65

1379 22605 2 6 67

1380 7452 1 2 22

1381 11733 2 2 63

1382 9642 0 6 47

1383 8054 0 2 63

1384 17292 1 9 44

1385 15168 1 9 42

1386 8237 1 0 42

1387 8409 0 2 41

1388 79523 1 8 66

1389 320096 2 6 87

1390 18257 1 7 40

1391 9145 1 2 22

1392 1209 1 0 44

1393 0 0 0 1

1394 0 0 0 1

1395 15 0 3 22

1396 15 0 3 22

1397 15 0 3 22

1398 15 0 3 22

1399 864960 2 6 67

1400 3092 1 0 60

1401 12700 1 7 67

1402 6629 1 2 45

1403 3852 1 1 49

1404 6300 1 6 27

1405 16940 2 6 42

1406 7892 1 5 21

1407 0 0 0 1

1408 8082 1 4 44

1409 2098 0 7 20

1410 10050 1 3 42

1412 15003 2 0 40

1413 6900 0 3 43

1415 2590 0 2 28

1416 18029 1 6 67

1417 2901 1 2 27

1418 254993 2 2 68

1419 155 0 2 27

1420 3040 1 1 29

1421 4828 2 6 27

1422 5242 0 4 44

1423 5118 1 1 49

1424 4929 1 2 25

1425 3952 1 5 41

1426 6900 1 5 41

1427 4437 2 6 68

1428 665 1 3 25

1429 4382 2 4 25

1430 1117 2 4 25

1431 8578 0 6 27

1432 1716 1 2 23

1433 7360 0 6 27

1434 1162 0 2 47

1435 16506 2 1 89

1436 3581 1 0 43

1437 12450 2 7 84

1438 19276 2 1 29

1439 6890 2 7 43

1440 6136 1 3 24

1441 7256 1 5 25

1442 3163 2 2 60

1443 2820 1 0 60

1444 4950 1 7 23

1445 1020 0 2 24

1446 7600 1 1 47

1447 27800 2 2 84

1448 7500 1 6 67

1449 62600 2 9 43

1450 4820 1 6 64

1451 12300 1 7 41

1452 2000 1 7 42

1453 5250 1 6 47

1454 2300 0 4 22

1455 2560 0 7 23

1456 32600 2 2 63

1457 2472 1 4 22

1458 4214 2 7 23

1459 3222 0 6 68

1460 2585 1 2 27

1461 7431 2 2 43

1462 2278 1 1 29

1463 1568 1 1 29

1464 8289 1 7 43

1465 6881 1 9 22

1466 5747 1 9 24

1467 8613 2 7 47

1468 3089 1 7 27

1469 2872 1 1 29

1470 1109 1 7 23

1471 9466 1 2 63

1472 3520 1 1 29

1473 7440 1 7 22

1474 6120 1 0 60

1475 10999 2 1 89

1476 10647 1 0 60

1477 6075 1 4 42

1478 11638 0 0 60

1479 8691 1 1 69

1480 11280 1 1 69

1481 3620 0 3 24

1482 18300 1 7 60

1483 9572 2 6 40

1484 22729 2 7 40

1485 33350 2 0 87

1486 29900 1 0 67

1487 28980 2 0 47

1488 18960 1 5 41

1489 9500 1 0 62

1490 8170 1 6 24

1491 2697 0 6 27

1492 218652 2 7 67

1493 8791 1 3 64

1494 1874 0 4 22

1495 4104 1 3 63

1497 9200 2 3 42

1498 3977 1 7 42

1499 4457 1 7 43

1500 3090 1 3 44

1502 50 1 3 21

1503 6841 2 6 27

1504 12437 1 1 49

1505 23470 2 6 87

1506 7543 1 6 82

1507 27521 2 7 67

1508 4559 0 1 29

1509 3214 0 1 29

1510 7186 0 6 47

1511 1214138 2 7 62

1512 9981 1 1 49

1513 14390 1 2 44

1514 9136 1 9 44

1515 20119 1 2 41

1516 8230 1 0 62

1517 5920 2 6 62

1518 218652 2 7 67

1519 5628 1 7 25

1520 344 1 6 21

1582 64500 1 6 87

1583 193000 2 6 60

1584 10234 2 6 67

1585 6000 1 3 21

1586 2396 0 2 22

1587 5880 1 0 48

1613 889 0 0 20

1614 7950 0 0 40

1615 8812 0 0 42

1616 5015 2 1 42

1617 15895 2 0 20

1618 29140 2 4 44

1619 1654 0 4 62

1620 2038 1 0 68

1621 2038 1 0 25

1622 8109 0 0 60

1623 218652 2 7 67

1624 15895 2 0 20

1625 1654 0 4 62

1626 9660 1 7 87

1627 50 1 3 21

1628 1109 0 2 42

1629 50 1 3 21

1630 218652 2 7 67

1631 5628 1 7 25

1632 50 1 3 21

1633 50 1 3 21

1634 50 1 3 21

1635 50 1 3 21

1636 50 1 3 21

1637 50 1 3 21

1638 50 1 3 21

1639 50 1 3 21

1640 50 1 3 21

1641 50 1 3 21

1642 50 1 3 21

1643 50 1 3 21

1644 50 1 3 21

1645 50 1 3 21

1646 50 1 3 21

1647 50 1 3 21

1648 50 1 3 21

1649 50 1 3 21

1650 50 1 3 21

1651 50 1 3 21

1652 50 1 3 21

1653 50 1 3 21

1654 50 1 3 21

1655 50 1 3 21

1656 50 1 3 21

1657 50 1 3 21

1658 50 1 3 21

1659 50 1 3 21

1660 50 1 3 21

1661 50 1 3 21

1662 50 1 3 21

1663 50 1 3 21

1664 50 1 3 21

1665 50 1 3 21

1666 50 1 3 21

1667 50 1 3 21

1668 50 1 3 21

1669 50 1 3 21

1670 50 1 3 21

1671 50 1 3 21

1672 50 1 3 21

1673 50 1 3 21

1674 50 1 3 21

1675 50 1 3 21

1676 50 1 3 21

1677 50 1 3 21

1678 50 1 3 21

1679 50 1 3 21

1680 50 1 3 21

1681 50 1 3 21

1682 50 1 3 21

1683 50 1 3 21

1684 50 1 3 21

1685 50 1 3 21

1900 668000 0 7 67

1901 8578 0 7 27

1902 668000 0 7 67

1910 50 1 3 21

1911 50 1 3 21

1912 50 1 3 21

1913 50 1 3 21

1914 50 1 3 21

1920 300 0 0 60

1921 1800 0 2 60

1970 50 1 3 21

1971 67 0 4 24

1972 327 1 3 21

1973 531 2 2 23

1974 1400 1 7 22

1975 2872 1 1 29

1976 4828 2 6 27

1977 344 1 3 25

1978 5242 0 4 44

1979 530 0 4 24

1980 80 0 2 23

1981 198 1 4 22

1982 641 0 2 22

1983 879 0 2 22

1984 926 1 4 23

1985 60 0 2 60

1986 665 1 3 25

1987 8578 0 6 27

1988 164 0 2 23

1989 7360 0 6 27

1990 2697 0 6 27

1991 55 1 3 23

1992 6881 1 9 22

1993 182 0 2 22

1994 5628 1 6 21

1995 3520 1 1 29

 

4 - AGORA coloque este arquivo na pasta C:\ SUA PASTA DO BOT...tables\monsterDB.txt e/ou ...tables\bRO\monsterDB.txt ou ate coloquem nas duas, no meu ta rodando nas duas pastas

 

5 - PRONTO e só configurar na config e seja feliz

 

Obs: no post anterior ja tem um exemplo de config de uma coletanea de punhos elementais...

Link para o comentário
Compartilhar em outros sites

Este tópico está impedido de receber novos posts.
 Compartilhar

×
×
  • Criar Novo...

Informação Importante

Nós fazemos uso de cookies no seu dispositivo para ajudar a tornar este site melhor. Você pode ajustar suas configurações de cookies , caso contrário, vamos supor que você está bem para continuar.