|
|
| Author |
Message |
WannaBe83
Group: Banned Joined: 19 Apr 2014 Posts: 13 Gold: Locked
Status: Warn: Banned Reputation: 0

|
#1 Posted: 29 Apr 2014 03:20 pm Post subject: Kolbot Script Question |
|
|
so say I want to modify how long my bot searches for XP shrine, do i simply modify the 15 in (Misc.getShrinesInArea(i, 15, true)? Or does that have nothing to do with time and it just checks all shrines in the area i designate?
trying to modify this
| Code: | for (i = 4; i > 1; i -= 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
Last edited by WannaBe83 on 29 Apr 2014 03:20 pm; edited 1 time in total _________________ This user's signature has been disabled |
|
| Back to top |
|
 |
Ne0
 Group: Members Joined: 29 Apr 2014 Donor:  Posts: 89 Gold: 53.60 Clan: D3JSP

Status: Warn:  Reputation: 2
|
#2 Posted: 29 Apr 2014 03:49 pm Post subject: Re: Kolbot Script Question |
|
|
| WannaBe83 wrote: | so say I want to modify how long my bot searches for XP shrine, do i simply modify the 15 in (Misc.getShrinesInArea(i, 15, true)? Or does that have nothing to do with time and it just checks all shrines in the area i designate?
trying to modify this
| Code: | for (i = 4; i > 1; i -= 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
|
Your bot should only search for a experience shrine until your leader says safe message. |
|
| Back to top |
|
 |
WannaBe83
Group: Banned Joined: 19 Apr 2014 Posts: 13 Gold: Locked
Status: Warn: Banned Reputation: 0

|
#3 Posted: 29 Apr 2014 06:01 pm Post subject: Re: Kolbot Script Question |
|
|
| Nuisance wrote: | | WannaBe83 wrote: | so say I want to modify how long my bot searches for XP shrine, do i simply modify the 15 in (Misc.getShrinesInArea(i, 15, true)? Or does that have nothing to do with time and it just checks all shrines in the area i designate?
trying to modify this
| Code: | for (i = 4; i > 1; i -= 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
|
Your bot should only search for a experience shrine until your leader says safe message. |
I'm not using this with baal assistant, and that's the thing. I don't want him to stop until he finds shrine _________________ This user's signature has been disabled |
|
| Back to top |
|
 |
Ne0
 Group: Members Joined: 29 Apr 2014 Donor:  Posts: 89 Gold: 53.60 Clan: D3JSP

Status: Warn:  Reputation: 2
|
#4 Posted: 01 May 2014 03:10 pm Post subject: Re: Kolbot Script Question |
|
|
| WannaBe83 wrote: | | Nuisance wrote: | | WannaBe83 wrote: | so say I want to modify how long my bot searches for XP shrine, do i simply modify the 15 in (Misc.getShrinesInArea(i, 15, true)? Or does that have nothing to do with time and it just checks all shrines in the area i designate?
trying to modify this
| Code: | for (i = 4; i > 1; i -= 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
|
Your bot should only search for a experience shrine until your leader says safe message. |
I'm not using this with baal assistant, and that's the thing. I don't want him to stop until he finds shrine |
PM Jeff, i'm pretty sure he is good with Kolbot. |
|
| Back to top |
|
 |
|
 |
TooLegitTooQuit
Group: Members Joined: 25 Mar 2014 Donor:  Posts: 895 Gold: Locked Clan: Integrity

Status: Warn:  Reputation: 3
|
#5 Posted: 01 May 2014 05:40 pm Post subject: Re: Kolbot Script Question |
|
|
| Nuisance wrote: | | WannaBe83 wrote: | | Nuisance wrote: | | WannaBe83 wrote: | so say I want to modify how long my bot searches for XP shrine, do i simply modify the 15 in (Misc.getShrinesInArea(i, 15, true)? Or does that have nothing to do with time and it just checks all shrines in the area i designate?
trying to modify this
| Code: | for (i = 4; i > 1; i -= 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
|
Your bot should only search for a experience shrine until your leader says safe message. |
I'm not using this with baal assistant, and that's the thing. I don't want him to stop until he finds shrine |
PM Jeff, i'm pretty sure he is good with . |
Hellllllll no!!! Jeff's a known scammer. Pm warrior ten times better than Jeff he's also 10 times more active than Jeff. Also when I messaged warrior first time he never said anything bad about Jeff. The only thing Jeff has said to me was bad things about his competitor (warrior) with absolutely no proof.
Good luck w ur problem I went from knowing nothing about kolbot to running 50 bots no problem about to run another 70 on my brand new computer!! Great guy warrior is super voucher |
|
| Back to top |
|
 |
TooLegitTooQuit
Group: Members Joined: 25 Mar 2014 Donor:  Posts: 895 Gold: Locked Clan: Integrity

Status: Warn:  Reputation: 3
|
#6 Posted: 01 May 2014 05:49 pm Post subject: |
|
|
| I respect the fact that the mods can't do anything bc the trade occurred on skype not this site. However proof provided Jeff = scammer |
|
| Back to top |
|
 |
name
Group: Banned Joined: 25 Jun 2013 Posts: 16 Gold: Locked
Status: Warn: Banned Reputation: 0

|
#7 Posted: 04 May 2014 08:42 am Post subject: |
|
|
15 just means the type of shrine it's searching for, 15 = exp shrine.
In the for loop you posted the i = areaid, it starts at area 4 (stoney field) and searches back to area 1 (rouge encampment).
If you wanted to add more areas you could make it go back to town after that loop and then search, dark wood -> tamoe highland with something like this
| Code: |
for (i = 5; i < 8; i += 1) {
if (Misc.getShrinesInArea(i, 15, true)) {
break;
}
}
|
_________________ This user's signature has been disabled |
|
| Back to top |
|
 |
Nate Forum Police!
 Group: Retired Moderators Joined: 13 Jul 2008 Donor:  Posts: 8615 Gold: 2007.49

Status: Warn:  Reputation: 152

|
#8 Posted: 04 May 2014 05:44 pm Post subject: |
|
|
Let's keep scammer accusations to the correct forum only please _____________________
|
|
| Back to top |
|
 |
|