can you post the servertype0.pm of yours because i cant find the
additional cmd/syntax
displayExpGained 1|0
thanks
Renewal just hit pRO! are there updates for openkore?
Moderators: waferbaron, Moderators
Forum rules
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
-
- Noob
- Posts: 9
- Joined: 25 Sep 2010, 12:44
- Noob?: Yes
-
- Developers
- Posts: 1798
- Joined: 05 Dec 2008, 05:42
- Noob?: Yes
Re: Renewal just hit pRO! are there updates for openkore?
You don't really need that.buyo wrote:can you post the servertype0.pm of yours because i cant find the
additional cmd/syntax
displayExpGained 1|0
And that goes to config with that patch.
-
- Noob
- Posts: 12
- Joined: 13 Oct 2010, 22:14
- Noob?: Yes
Re: Renewal just hit pRO! are there updates for openkore?
please make a step on how to configure that servertype0.pm.. shud i open that on notepad? it has so many word i cant find the exact place. whre shud i post that
-
- Noob
- Posts: 17
- Joined: 23 Oct 2010, 06:01
- Noob?: No
Re: Renewal just hit pRO! are there updates for openkore?
is there a fix for Auto Shadow Spell? it can cast once but after the time run out the bot does not recast it anymore.
-
- Noob
- Posts: 6
- Joined: 23 Oct 2010, 10:43
- Noob?: Yes
Re: Renewal just hit pRO! are there updates for openkore?
hi guys, regarding dun sa fix ng Unhandled packet, patulong naman. pwede pa copy nung fixed ServerType0 nyo?
yung notepad ko kasi, pag inoopen ko yan, iba yung format ng text. parang ang gulo gulo ng format ng mga text.
yung notepad ko kasi, pag inoopen ko yan, iba yung format ng text. parang ang gulo gulo ng format ng mga text.
-
- Noob
- Posts: 4
- Joined: 24 Oct 2010, 00:40
- Noob?: No
Re: Renewal just hit pRO! are there updates for openkore?
ok sir, just went to the directory. but it is of file type pm so i cannot directly opened it therefore i open it with notepadSoulless wrote:file location:Hoax wrote:Benj.. ive read your post on the other thread about this but is there a way we can get rid of it?
Packet Parser: Unhandled Packet: 07F6 Handler: exp
Packet Parser: Unhandled Packet: 07F6 Handler: exp
Packet Parser: Unhandled Packet: 07F6 Handler: exp
Packet Parser: Unhandled Packet: 07F6 Handler: exp
Packet Parser: Unhandled Packet: 07F6 Handler: exp
keeps on popping out in my bot screen hehehe. no harm in my botting but i just want to get rid of it.
x:\bot\openkore_ready\src\Network\Receive\ServerType0.pm
insert/pastesomewhere down below packet handling callbacks:Code: Select all
sub exp { my ($self, $arg) = @_; return if !$config{'displayExpGained'}; if ($arg->{flag} == 1) { if ($arg->{type} == 1) { message TF("Quest Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp"; } else { message TF("Quest Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp"; } } else { if ($arg->{type} == 1) { message TF("Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp"; } else { message TF("Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp"; } } }
additional cmd/syntax
displayExpGained 1|0
and the text inside is a mess because it is not arranged properly
so i ctrl+f -> packet handling callbacks
found it but don't know where to paste the code
so i pasted it to the bottom of the whole thing then
i tried to run kore and (Packet Parser: Unhandled Packet: 07F6 Handler: exp) doesn't show anymore
Have I done the right thing??

OFFTOPIC: pwede ba mag-tagalog dito? xD
-
- Noob
- Posts: 3
- Joined: 24 Oct 2010, 02:10
- Noob?: Yes
Re: Renewal just hit pRO! are there updates for openkore?
can u guys give me the complete packet of openkore..
i really dont knw how to fixed this problem..
pls guys...
i really dont knw how to fixed this problem..
pls guys...
-
- Noob
- Posts: 3
- Joined: 22 Oct 2010, 06:00
- Noob?: No
Re: Renewal just hit pRO! are there updates for openkore?
try to open it (ServerType0.pm) using wordpad instead of notepad.
-
- Noob
- Posts: 6
- Joined: 23 Oct 2010, 10:43
- Noob?: Yes
Re: Renewal just hit pRO! are there updates for openkore?
grabe, san ba e paste to? ilang beses ko ng pinaste using wordpad, lumalabas pa rin yung error.
sub exp {
my ($self, $arg) = @_;
return if !$config{'displayExpGained'};
if ($arg->{flag} == 1) {
if ($arg->{type} == 1) {
message TF("Quest Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
} else {
message TF("Quest Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
}
} else {
if ($arg->{type} == 1) {
message TF("Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
} else {
message TF("Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
}
}
}
-
- Noob
- Posts: 1
- Joined: 24 Oct 2010, 05:38
- Noob?: No
Re: Renewal just hit pRO! are there updates for openkore?
tazocin wrote:grabe, san ba e paste to? ilang beses ko ng pinaste using wordpad, lumalabas pa rin yung error.
sub exp {
my ($self, $arg) = @_;
return if !$config{'displayExpGained'};
if ($arg->{flag} == 1) {
if ($arg->{type} == 1) {
message TF("Quest Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
} else {
message TF("Quest Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
}
} else {
if ($arg->{type} == 1) {
message TF("Base Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
} else {
message TF("Job Exp Gained: %s\n", formatNumber($arg->{val})), "exp";
}
}
}
bro BASAHIN mo lang maigi yung previous post about that ..

then don't forget to rerun your start.exe