Renewal just hit pRO! are there updates for openkore?

Philippines

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.
buyo
Noob
Noob
Posts: 9
Joined: 25 Sep 2010, 12:44
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#111 Post by buyo »

can you post the servertype0.pm of yours because i cant find the

additional cmd/syntax
displayExpGained 1|0

thanks
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#112 Post by EternalHarvest »

buyo wrote:can you post the servertype0.pm of yours because i cant find the

additional cmd/syntax
displayExpGained 1|0
You don't really need that.
And that goes to config with that patch.
denz1208
Noob
Noob
Posts: 12
Joined: 13 Oct 2010, 22:14
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#113 Post by denz1208 »

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
greaver
Noob
Noob
Posts: 17
Joined: 23 Oct 2010, 06:01
Noob?: No

Re: Renewal just hit pRO! are there updates for openkore?

#114 Post by greaver »

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.
tazocin
Noob
Noob
Posts: 6
Joined: 23 Oct 2010, 10:43
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#115 Post by tazocin »

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.
rapitiks
Noob
Noob
Posts: 4
Joined: 24 Oct 2010, 00:40
Noob?: No

Re: Renewal just hit pRO! are there updates for openkore?

#116 Post by rapitiks »

Soulless wrote:
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.
file location:
x:\bot\openkore_ready\src\Network\Receive\ServerType0.pm

insert/paste

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";
		}
	}
}
somewhere down below packet handling callbacks:

additional cmd/syntax
displayExpGained 1|0
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 notepad
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?? :D

OFFTOPIC: pwede ba mag-tagalog dito? xD
dooze
Noob
Noob
Posts: 3
Joined: 24 Oct 2010, 02:10
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#117 Post by dooze »

can u guys give me the complete packet of openkore..
i really dont knw how to fixed this problem..
pls guys...
nonamer
Noob
Noob
Posts: 3
Joined: 22 Oct 2010, 06:00
Noob?: No

Re: Renewal just hit pRO! are there updates for openkore?

#118 Post by nonamer »

try to open it (ServerType0.pm) using wordpad instead of notepad.
tazocin
Noob
Noob
Posts: 6
Joined: 23 Oct 2010, 10:43
Noob?: Yes

Re: Renewal just hit pRO! are there updates for openkore?

#119 Post by tazocin »

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";
}
}
}
ronixis
Noob
Noob
Posts: 1
Joined: 24 Oct 2010, 05:38
Noob?: No

Re: Renewal just hit pRO! are there updates for openkore?

#120 Post by ronixis »

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