Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Programming
You last visited: Today at 21:50

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



2nd RB Script for Chrome Bot

Discussion on 2nd RB Script for Chrome Bot within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2009
Posts: 148
Received Thanks: 5
2nd RB Script for Chrome Bot

Return0 Posted things and infos about the 2nd RB quest script
can any one help me to make them straight and make it a fully working script?

i wish some one can help me
Here's the infos :

Code:
722725 SoulAroma
722724 DreamGrass
722722 GhostHorn
722721 EvilTooth
722726 FeatherStone
722728 ImmortalStone
722729 VigorFragment
722730 ImpureVigor
722731 PureVigor
722727 SquamaBead
Code:
Second RB
ID´s ; Aktion ; Loot

EarthSeal: 3605 ;0,255 ; GhostHorn
Arthur: 3601 ;0,255,255,255; EvilTooth



FireSeal: 3607
WaterSeal: 3606
SatanSeal: 3608


Bruce: 3604
Brayn: 3602
Angela: 3603

CleasingStove: 3609
Code:
//Second Rebirth Quest
//Written by Return Zero
//Initial release to Chrome
//If this helps you out donate me on paypal
//This source may not be redistributed without my consent
//Highlighted to help people learn

//This adds all the items for the quest
//you remove them at the places no longer needed free's resources

vlist add Moss
vlist add DreamGrass
vlist add SoulAroma
vlist add GhostHorn
vlist add FeatherStone
vlist add ImmortalStone
vlist add VigorFragment
vlist add ImpureVigor
vlist add PureVigor
vlist add SquamaBead
vlist add RebirthToken

//Teleports you to the MapID e.g 1036=market
//and the available coordinates in this case
//I used a location 213 213 to be next to the Rebirth Master

@tele 1036 213 213

//Now using the log box you get the npcid and the selections
//they go in order by number snd 255 is used to close the box.
//*note I am stopped here until I have the next info need a working //proxy to get info
npcaction ???? ,1,0,0,0
Code:
//These are code notes to myself just in case I loose them there not intended to be ran like this

//1st run
if level <=120 && == 1rb
cityrun
@tele 1036 x y
npcaction *RebirthMaster,2,1,1

//Minor Item Hunting
MinorItem
@tele hellID 133 585
radius 200
@hunt
if 722725<=1 && 722724<=1 && 722722<=1
NextStep


//Step Check
if PureVigor ==3 DevilStep


  if ImpureVigor <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
   StartClensing

    if VigorFragment <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
     GetVigor

      if ImmortalStone <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
       GetFragment

        if FeatherStone <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
         GetEvilTooth

       
          if EvilTooth <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
           GetFeather

            if GhostHorn <=1 && SoulAroma<=1 && DreamGrass<=1 && Moss <=1
             GetTeeth
             
              if SoulAroma<=1 && DreamGrass<=1 && Moss <=1
               GetGhostHorn
Alhassan_x is offline  
Old 02/02/2012, 14:45   #2
 
elite*gold: 0
Join Date: Jan 2012
Posts: 164
Received Thanks: 22
this wont make sense but in chrome forum not here but lemme give this a try , brb


if level <=120 && == 1rb
cityrun (method to go to ape city ?)
@tele 1036 x y
npcaction *RebirthMaster,2,1,1 (reb npc ?)

srsly that sounds like shit for me cuz i dont even know the full commands but here
an example for how this goes for a PERFECT script

(BTW im the one who did the first blue mouse script on cog)

make a path which goes around all spawns with decent red.
add bosses coords in a list
add hunting coords in a list
add coords for npcs to collect items

check if +120 && reb = 1
check if not in ape , go to ape then go to coords to npc
clicknpc,answerPram
go to coords of pots , check inventory , buy pots , go to hunting spawn

while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}

and u need now to check if u got them to do the next step (sorry not perfect english but code will explain)

while(moss,dream,soularmoa in item)
{
go to spawning boss coords and do pram and kill it
while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}
}

and so on till u reach this

while( 3 items which spawn monster of pure vigro is there)
go to exchange them
go to spawn it and kill it
while(3 items (each of 3 horns)
go to npc to make them this thing which spawn some monster
spawn it and kill it
while(3 horns in item)
{
go to make another item
while(moss,dream,soularmoa in item)
{
go to spawning boss coords and do pram and kill it
while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}
}
}
}
}



u may dont like while and need to do it with another nested loops or even switchs/deg/methChecks ,
its really up to u for how to code it but this is how the whole thing will be like

after all this whiles not true it will go for next code which do second reb or w/e

also u need to try and catch , not litterally but atleast to check if dead to go to the start and deposit and save how much he deposited , srsly cant tell u how scripts maybe great but it need a great coder too

nice things to be done
check if dead to deposit
check if item full to deposit
variable to know how much u deposited
max value for this variable when its reached it dont hunt anymore
also reconnection so u can leave it afk

i need full commands for scripting at chrome so i can give u a fully done code

good luck
injection illusion logic is offline  
Thanks
1 User
Old 02/06/2012, 09:04   #3
 
majick's Avatar
 
elite*gold: 0
Join Date: Nov 2006
Posts: 211
Received Thanks: 42
releasing my notes from when I changed comps o.0
That's not even close to what I have finished nor will it do anything for anyone why would you even try to release this from the support section with a clear WIP meaning work in progress.


majick is offline  
Old 02/08/2012, 22:03   #4
 
majick's Avatar
 
elite*gold: 0
Join Date: Nov 2006
Posts: 211
Received Thanks: 42
Quote:
Originally Posted by injection illusion logic View Post
this wont make sense but in chrome forum not here but lemme give this a try , brb


if level <=120 && == 1rb
cityrun (method to go to ape city ?)
@tele 1036 x y
npcaction *RebirthMaster,2,1,1 (reb npc ?)

srsly that sounds like shit for me cuz i dont even know the full commands but here
an example for how this goes for a PERFECT script

(BTW im the one who did the first blue mouse script on cog)

make a path which goes around all spawns with decent red.
add bosses coords in a list
add hunting coords in a list
add coords for npcs to collect items

check if +120 && reb = 1
check if not in ape , go to ape then go to coords to npc
clicknpc,answerPram
go to coords of pots , check inventory , buy pots , go to hunting spawn

while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}

and u need now to check if u got them to do the next step (sorry not perfect english but code will explain)

while(moss,dream,soularmoa in item)
{
go to spawning boss coords and do pram and kill it
while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}
}

and so on till u reach this

while( 3 items which spawn monster of pure vigro is there)
go to exchange them
go to spawn it and kill it
while(3 items (each of 3 horns)
go to npc to make them this thing which spawn some monster
spawn it and kill it
while(3 horns in item)
{
go to make another item
while(moss,dream,soularmoa in item)
{
go to spawning boss coords and do pram and kill it
while(moss,dream,soularmoa not in item)
{
hunt in hunting coords in the path u have pre-done
}
}
}
}
}



u may dont like while and need to do it with another nested loops or even switchs/deg/methChecks ,
its really up to u for how to code it but this is how the whole thing will be like

after all this whiles not true it will go for next code which do second reb or w/e

also u need to try and catch , not litterally but atleast to check if dead to go to the start and deposit and save how much he deposited , srsly cant tell u how scripts maybe great but it need a great coder too

nice things to be done
check if dead to deposit
check if item full to deposit
variable to know how much u deposited
max value for this variable when its reached it dont hunt anymore
also reconnection so u can leave it afk

i need full commands for scripting at chrome so i can give u a fully done code

good luck
If you would like to give it a go we have if and else if


here is the command reference


I can shoot you a more complete script if you want something to work with as well as all the npc ids and captions plus item ids which silent-death took the time to note down.

for item hunting I was aiming for something closer to adding a hunt pathing loop by timers.

//2rb item hunting

//miniboss area 1
@tele x y id
radius 500
@hunt
stopon timer 3000
//miniboss area 2
@tele x y id
radius 500
@hunt
stopon timer 3000
//miniboss area 3
@tele x y id
radius 500
@hunt
stopon timer 3000
etc..

This will increase the efficiency of the hunt by targeting 2nd and 3rd lvl bosses.

The sinking of the hill will be similar with shorter times again for efficiency.

the loop //Step Check
was a prototype for keeping track of what step your on its gonna be else if and for the sake of having fatal strike on the bosses it will start the next step as soon as items are present.
majick is offline  
Reply


Similar Threads Similar Threads
Google Chrome
12/06/2011 - Technical Support - 10 Replies
Hey habe alles von meinen PC runter geschmissen , ausversehene auch GOOGLE CHROME. jezz will ichs neu downloaden und dann steht da : If u have Google Chrome . Also dass ich es auf meinen pc shcon habe . aber finde es nirgendwo und will damit wieder ins INET . wie kann ich es löschen?
WP help chrome?
11/20/2011 - DarkOrbit - 2 Replies
can you help me to use WP on chrome with teamviewer?
WP und Chrome
08/17/2011 - DarkOrbit - 0 Replies
Wie mache ich WP bei Chrome? Erst WP starten dann Chrome oder erst Chrome dann WP? Oder DarkOrbit aufrufen, einloggen, WP starten und dann bei DarkOrbit auf Starten? Und kann mir nochmal jmd den Link für nen Piraten-Box-Locator geben? xD Wenn ich schon frage xD Bitte Antworten -.-
Chrome
05/25/2011 - Technical Support - 0 Replies
Hit jemand einen Plan wie man Addons anderer Browser wie z.B. Firefox in Google's Chrom verwenden kann? Ich hatte dazu mal was gelesen finde es aber nicht mehr^^
eow chrome here ^^..
07/07/2009 - Say Hello - 0 Replies
hi guys.. in new here.. and looking for a cool place for RO Hacks ^^



All times are GMT +2. The time now is 21:50.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.