Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

pRO NI,Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config (LEAP YEAR Update)

Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

@showzz
wala kang magagawa sa action delay talaga naman may delay ung mga skills eh..kahit magmanual ka meron nian delay na yan..hindi pedeng spam lang ng spam ng skill.

salamat po, may problema po ko sa autostorage ayaw niyang gumana, ano po kaya problema?
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

@jozkoz

sige sir, try ko later...modify ko na rin if ever di gumana...Thanks.


Eh eto kaya, i found it from openkore.com




#-------------------------------------------------------------------------------
# AntiMob
# * for servers that have their teleport skill disabled (pRO Valkyrie/Valhala)
# coded by RJ (vmkjwan)
#
# This source code is licensed under the
# GNU General Public License, Version 2.
# See http://www.gnu.org/licenses/gpl.html
# -----------------------------------------------------------------------------
# Change Log:
# v0.1 (05/17/08) - Initial
# v0.2 (05/18/08) - Added computation based on HP:Aggro ratio
# v0.3 (06/04/08) - Added Life Insurance option
# -----------------------------------------------------------------------------
# How to use this plugin:
#
# in control\config.txt, put:
#
# antiMob (1|0)
# antiMob_useInsu (1|0)
#
#------------------------------------------------------------------------------

package antiMob;

use strict;
use Plugins;
use Globals;
use Utils;
use Misc;
use Settings;

Plugins::register("antiMob", "Relog when getting Mobbed", \&unload);

my $hooks = Plugins::addHooks(
['packet_attack', \&onAttack, undef]
);

sub unload {
Plugins::delHooks($hooks);
}

# default relogTime
my $relogTime = 60;

sub onAttack {
return unless ($config{'antiMob'});
my ($self, $args) = @_;
my $aggros = scalar AI::ai_getAggressives();

if ($args->{'targetID'} eq $accountID) {
return if($args->{'dmg'} == 0);
my $hp = $char->hp_percent();

# I havent really tweaked the HP:Aggro ratio.. But it did saved me a lot of times
if( $hp < 50 && ((ceil($hp/10)-1) >= $aggros) ) {
Log::message(sprintf("Too many aggressives. HP: %s Aggro: %s\n", $hp, $aggros));

# Should we use insu?
if($config{'antiMob_useInsu'}) {
# Check if theres an active Life Insurance status
if(!$char->{statuses}{'Life Insurance'}) {
my $insu = Actor::Item::get('Life Insurance', undef, 1);
# Check if you really have the Life Insurance item
if(defined $insu) {
Log::message("Using Life Insurance..\n");
$insu->use();
return;
# You dont have it.. Relog
} else {
Log::message("We dont have any Life Insurance item left.\n");
}

} else {
Log::message("Good thing we still have Life Insurance status.\n");
return;
}
}
Log::message("Relogging..\n");
relog($relogTime);
}
}

}

sub ceil {
my $r = shift;
my $frac = $r - int($r);
if($frac<=0) {
return int($r);
} else {
return 1+int($r);
}
}

1;
 
Last edited:
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

@jozkoz

sige sir, try ko later...modify ko na rin if ever di gumana...Thanks.


Eh eto kaya, i found it from openkore.com




#-------------------------------------------------------------------------------
# AntiMob
# * for servers that have their teleport skill disabled (pRO Valkyrie/Valhala)
# coded by RJ (vmkjwan)
#
# This source code is licensed under the
# GNU General Public License, Version 2.
# See http://www.gnu.org/licenses/gpl.html
# -----------------------------------------------------------------------------
# Change Log:
# v0.1 (05/17/08) - Initial
# v0.2 (05/18/08) - Added computation based on HP:Aggro ratio
# v0.3 (06/04/08) - Added Life Insurance option
# -----------------------------------------------------------------------------
# How to use this plugin:
#
# in control\config.txt, put:
#
# antiMob (1|0)
# antiMob_useInsu (1|0)
#
#------------------------------------------------------------------------------

package antiMob;

use strict;
use Plugins;
use Globals;
use Utils;
use Misc;
use Settings;

Plugins::register("antiMob", "Relog when getting Mobbed", \&unload);

my $hooks = Plugins::addHooks(
['packet_attack', \&onAttack, undef]
);

sub unload {
Plugins::delHooks($hooks);
}

# default relogTime
my $relogTime = 60;

sub onAttack {
return unless ($config{'antiMob'});
my ($self, $args) = @_;
my $aggros = scalar AI::ai_getAggressives();

if ($args->{'targetID'} eq $accountID) {
return if($args->{'dmg'} == 0);
my $hp = $char->hp_percent();

# I havent really tweaked the HP:Aggro ratio.. But it did saved me a lot of times
if( $hp < 50 && ((ceil($hp/10)-1) >= $aggros) ) {
Log::message(sprintf("Too many aggressives. HP: %s Aggro: %s\n", $hp, $aggros));

# Should we use insu?
if($config{'antiMob_useInsu'}) {
# Check if theres an active Life Insurance status
if(!$char->{statuses}{'Life Insurance'}) {
my $insu = Actor::Item::get('Life Insurance', undef, 1);
# Check if you really have the Life Insurance item
if(defined $insu) {
Log::message("Using Life Insurance..\n");
$insu->use();
return;
# You dont have it.. Relog
} else {
Log::message("We dont have any Life Insurance item left.\n");
}

} else {
Log::message("Good thing we still have Life Insurance status.\n");
return;
}
}
Log::message("Relogging..\n");
relog($relogTime);
}
}

}

sub ceil {
my $r = shift;
my $frac = $r - int($r);
if($frac<=0) {
return int($r);
} else {
return 1+int($r);
}
}

1;



ano lng to ??

mag rerelog at kpag d kaya mag iinsu ??
pwd nmn sa config txt to ah ..
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

Sir I need help regarding character selection. some of my characters ay hindi na dedetect ng bot. diba dpt Slot 0 tap0s ung Name ng Character tap0s level.. ung iba kong char di na didisplay ung name at level eh. paano ba to? :) di ko tuloy ma iboy ung iba.. ung iba ko pang Char. lalabas *Slot 4479 Novice level (0/0) help :) thank u!
 
Last edited:
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

Ung sa unang pic ayaw gumana ng bot dun sa lappy ng utol ko. Win XP ang OS. Then dun sa second pic dati nagana ung dual client pero ngyn ayaw na. Sna matulungan mo ako jozkoz. :help::help::help:
 

Attachments

  • bot.JPG
    bot.JPG
    61.9 KB · Views: 7
  • bot2.jpg
    bot2.jpg
    513.5 KB · Views: 8
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

may macro po ba or gagawin sa config para mag auto-feed bot ng homunculus? :pray: help!
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

baka naman po may unli-release macro for warlocks na po kau jan.. pashare naman po please.. thanks.. more power you guys .. :)
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

sir pa help, baguhan ako sa ro, d ko alam panu paganahin tong bot... thief po chac ko.. panu i config?
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

@Euiki, Jozkoz pacopy naman ako skill nyo para sa stalker ko hehehe tsaka san ba maganda spot magpacopy ng skill?
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

sir pede po p less tuor newbie lng po kasi ako sa bot configuration eh... any suggestions are highly apreciated... :pray:
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

Sir I need help regarding character selection. some of my characters ay hindi na dedetect ng bot. diba dpt Slot 0 tap0s ung Name ng Character tap0s level.. ung iba kong char di na didisplay ung name at level eh. paano ba to? di ko tuloy ma iboy ung iba.. ung iba ko pang Char. lalabas *Slot 4479 Novice level (0/0) help thank u!
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

@jozkoz

sige sir, try ko later...modify ko na rin if ever di gumana...Thanks.


Eh eto kaya, i found it from openkore.com




#-------------------------------------------------------------------------------
# AntiMob
# * for servers that have their teleport skill disabled (pRO Valkyrie/Valhala)
# coded by RJ (vmkjwan)
#
# This source code is licensed under the
# GNU General Public License, Version 2.
# See http://www.gnu.org/licenses/gpl.html
# -----------------------------------------------------------------------------
# Change Log:
# v0.1 (05/17/08) - Initial
# v0.2 (05/18/08) - Added computation based on HP:Aggro ratio
# v0.3 (06/04/08) - Added Life Insurance option
# -----------------------------------------------------------------------------
# How to use this plugin:
#
# in control\config.txt, put:
#
# antiMob (1|0)
# antiMob_useInsu (1|0)
#
#------------------------------------------------------------------------------

package antiMob;

use strict;
use Plugins;
use Globals;
use Utils;
use Misc;
use Settings;

Plugins::register("antiMob", "Relog when getting Mobbed", \&unload);

my $hooks = Plugins::addHooks(
['packet_attack', \&onAttack, undef]
);

sub unload {
Plugins::delHooks($hooks);
}

# default relogTime
my $relogTime = 60;

sub onAttack {
return unless ($config{'antiMob'});
my ($self, $args) = @_;
my $aggros = scalar AI::ai_getAggressives();

if ($args->{'targetID'} eq $accountID) {
return if($args->{'dmg'} == 0);
my $hp = $char->hp_percent();

# I havent really tweaked the HP:Aggro ratio.. But it did saved me a lot of times
if( $hp < 50 && ((ceil($hp/10)-1) >= $aggros) ) {
Log::message(sprintf("Too many aggressives. HP: %s Aggro: %s\n", $hp, $aggros));

# Should we use insu?
if($config{'antiMob_useInsu'}) {
# Check if theres an active Life Insurance status
if(!$char->{statuses}{'Life Insurance'}) {
my $insu = Actor::Item::get('Life Insurance', undef, 1);
# Check if you really have the Life Insurance item
if(defined $insu) {
Log::message("Using Life Insurance..\n");
$insu->use();
return;
# You dont have it.. Relog
} else {
Log::message("We dont have any Life Insurance item left.\n");
}

} else {
Log::message("Good thing we still have Life Insurance status.\n");
return;
}
}
Log::message("Relogging..\n");
relog($relogTime);
}
}

}

sub ceil {
my $r = shift;
my $frac = $r - int($r);
if($frac<=0) {
return int($r);
} else {
return 1+int($r);
}
}

1;

for me etong plugin na to magastos :)) and pag mag rrelog ka pag mammob ka, ganun din ma ddedz ka rin kasi pag ka relog mo mga 10 seconds ba bago mawala ung char mo sa game


@MARKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
et naaaa
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

Sir I need help regarding character selection. some of my characters ay hindi na dedetect ng bot. diba dpt Slot 0 tap0s ung Name ng Character tap0s level.. ung iba kong char di na didisplay ung name at level eh. paano ba to? :) di ko tuloy ma iboy ung iba.. ung iba ko pang Char. lalabas *Slot 4479 Novice level (0/0) help :) thank u!

paki basa ung sa first page....^^andunlang ung ung 108gagawin mong 112..


hirap mag reply..maya nalang..hahaha wala akosa bahay ehh :lol:
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

baka naman po may unli-release macro for warlocks na po kau jan.. pashare naman po please.. thanks.. more power you guys ..
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

paki basa ung sa first page....^^andunlang ung ung 108gagawin mong 112..


Hirap mag reply..maya nalang..hahaha wala akosa bahay ehh :lol:

salamat!
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

pa help nmn po kuya jozkoz... ung naka lockmap ako sa GH pero dadaan sa taas ng geffen at hndi left side. taena gm na ata nangtritrip dun. may warp palage
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

pahelp mga bossing.. may nag trip na magwarp sa payon.. stuck kami ngaun sa mid camp sa gitna :( help please pa pull mga rk :(
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

Guys, pede makahingi favor... panu mag change ng map... i mean ganito senario... pag nasa anolian ako then pag na mobs eh syempre madededz... so babalik sa geffen town... so ang nilalakaran nya papunta sa lockmap area eh ung ordinary route at e2 un... gef_fild07--- gef_fild08----gef_fild06----glast01---gl_knt01-----gl_sew02.... ang problem ko d2 eh pag malapit na cya sa portal sa gl_sew02 ay maraming raydric, etc.... so madededz nanaman... eh sayng exp point so ang gusto ko lng eh hndi na cya dadaan d2 kc may other route naman... ang gsto ko sana ay pag dating sa glast_01 ay dadaan cya sa gl_cas01 so e2 ang sequence route....... geffen---- gef_fild07--- gef_fild08----gef_fild06----glast01-----gl_cas01-----gl_prison----gl_prison1-----gl_sew01----gl_sew02-----gl_sew03 and gl_sew04.... yan sana ang gsto mangyari at paanu e2 gawin... sana matulungan nyo ako....thnx sa makakatulong...
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

B>UBE 260m each

PM ME NALANG DITO :)
 
Re: pRO Valk,NL,Valh,NC BGBot,HexedClient,KS,Macros,Config Welcome ALL pRO Players

S>UBE 300m FIXED!!! Need Zenny :lol:
 
Back
Top Bottom