|
07/01/2010, 15:07
|
#166
|
elite*gold: 0
Join Date: Feb 2007
Posts: 348
Received Thanks: 2,175
|
someone asked a vid b4, dont remember who.. but there's one.
|
|
|
07/01/2010, 16:20
|
#167
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
thank you so much, this is by far one of the most amazing things i have ever seen (once made something similar for a different game). I am a .NET coder and will thoroughly enjoy what you have given me. You have made so many contributions through the years, and all are very much appreciated.
thank you.
also, quick question.
i noticed this
(using version 1.1 btw)
Code:
var mobs = monster birdman
while true
attack mobs
end
how do i declare multiple instances of mobs?
Code:
var mobs = monster birdman and monster othermonster?
-
var mobs = monster birdman , monster othermonster?
-
var mobs = monster birdman
var mobs = monster othermonster
just curious.
also this gives me an undefined variable error
Code:
when hp < 40
use item Stancher
end
when true
attack self with Superman
end
while true
attack monster Pheasant
loot item meteor
loot item dragonball
loot item gold
end
also could you provide the code for scanning to see if monster x is visible, and if not jump randomly?
something like
Code:
if can see monster X
attack monster x
loot item gold
loot item meteor
loot item dragonball
else jump posx - random(1,10), posy - random(1,10)
end
|
|
|
07/01/2010, 17:40
|
#168
|
elite*gold: 0
Join Date: Apr 2009
Posts: 9
Received Thanks: 0
|
Hey, using this program what would the code be to make it constantly cast a skill on another player? Say if you right clicked them with stig how would i make it keep casting stig constantly?
|
|
|
07/01/2010, 18:00
|
#169
|
elite*gold: 0
Join Date: Feb 2007
Posts: 348
Received Thanks: 2,175
|
Quote:
Originally Posted by DeathByMoogles
thank you so much, this is by far one of the most amazing things i have ever seen (once made something similar for a different game). I am a .NET coder and will thoroughly enjoy what you have given me. You have made so many contributions through the years, and all are very much appreciated.
thank you.
also, quick question.
i noticed this
(using version 1.1 btw)
Code:
var mobs = monster birdman
while true
attack mobs
end
how do i declare multiple instances of mobs?
Code:
var mobs = monster birdman and monster othermonster?
-
var mobs = monster birdman , monster othermonster?
-
var mobs = monster birdman
var mobs = monster othermonster
just curious.
also this gives me an undefined variable error
Code:
when hp < 40
use item Stancher
end
when true
attack self with Superman
end
while true
attack monster Pheasant
loot item meteor
loot item dragonball
loot item gold
end
also could you provide the code for scanning to see if monster x is visible, and if not jump randomly?
something like
Code:
if can see monster X
attack monster x
loot item gold
loot item meteor
loot item dragonball
else jump posx - random(1,10), posy - random(1,10)
end
|
there is actually something for that
in my messy documentation
Value := "random" S Expression "," S Expression `value = new RandomNode(results[1].Value, results[3].Value)`
that means you can define a random number between 1 and 10 like so...
Code:
var x = random 1, 10
Code:
jump to posx + random 0,6 - 3, posy + random 0,6 - 3
It looks like a mess, but it does work. Also I've completely forgot about negative numbers as a constant "var x = -3" == fail. I should add that later.
Also... multiple mobs or mob arrays can not declare yet and
Code:
attack self with skill Superman
needs the skill keyword
|
|
|
07/01/2010, 18:29
|
#170
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
Quote:
Originally Posted by clintonselke
there is actually something for that
in my messy documentation
Value := "random" S Expression "," S Expression `value = new RandomNode(results[1].Value, results[3].Value)`
that means you can define a random number between 1 and 10 like so...
Code:
var x = random 1, 10
Code:
jump to posx + random 0,6 - 3, posy + random 0,6 - 3
It looks like a mess, but it does work. Also I've completely forgot about negative numbers as a constant "var x = -3" == fail. I should add that later.
Also... multiple mobs or mob arrays can not declare yet and
Code:
attack self with skill Superman
needs the skill keyword
|
<3
ok one little thing
Code:
when hp < 40
use item Stancher
end
when true
attack self with skill Superman
end
while true
attack monster Pheasant
loot item meteor
loot item dragonball
loot item gold
loot item sycee
end
DC's me. do i need to add a sleep to the skill command?
|
|
|
07/01/2010, 18:35
|
#171
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
added sleep works now nvm
**** now another undefined variable error using this code
Code:
# 20/06/2010 5:04:00 PM universal time
var pot = Amrita
var mob = Pheasant
var x = random 1, 10
when hp < 40
use item pot
end
when true
attack self with skill Superman
sleep 2000
end
if found monster mob
attack monster mob
loot item meteor
loot item dragonball
loot item gold
loot item sycee
else
jump to posx + random 0,6 - 3, posy + random 0,6 - 3
end
|
|
|
07/01/2010, 19:12
|
#172
|
elite*gold: 0
Join Date: Feb 2007
Posts: 348
Received Thanks: 2,175
|
Quote:
Originally Posted by DeathByMoogles
added sleep works now nvm
**** now another undefined variable error using this code
Code:
# 20/06/2010 5:04:00 PM universal time
var pot = Amrita
var mob = Pheasant
var x = random 1, 10
when hp < 40
use item pot
end
when true
attack self with skill Superman
sleep 2000
end
if found monster mob
attack monster mob
loot item meteor
loot item dragonball
loot item gold
loot item sycee
else
jump to posx + random 0,6 - 3, posy + random 0,6 - 3
end
|
Code:
var pot = item Amrita
var mob = monster Pheasant
needs item / monster keywords (sorta like the type of the value being set to the variable)
I can see my documentation needs work
|
|
|
07/01/2010, 19:43
|
#173
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
Quote:
Originally Posted by clintonselke
Code:
var pot = item Amrita
var mob = monster Pheasant
needs item / monster keywords (sorta like the type of the value being set to the variable)
I can see my documentation needs work
|
that would make it
use item item amrita
and
attack monster monster pheasant.
is that still right?
also, now i get "expected whitespace or = at line x at column x"
|
|
|
07/01/2010, 20:31
|
#174
|
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 1
|
the program runs on server french ?
|
|
|
07/01/2010, 21:49
|
#175
|
elite*gold: 0
Join Date: Nov 2007
Posts: 541
Received Thanks: 117
|
Guys , a question , does it work on Windows 7 ?
|
|
|
07/01/2010, 22:00
|
#176
|
elite*gold: 0
Join Date: Mar 2006
Posts: 66
Received Thanks: 1
|
Quote:
Originally Posted by DeathByMoogles
that would make it
use item item amrita
and
attack monster monster pheasant.
is that still right?
also, now i get "expected whitespace or = at line x at column x"
|
no,
put only
var mob = monster Pheasant
attack mob
like this...
might it work
|
|
|
07/01/2010, 22:06
|
#177
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
if that works, then great but i just did a system restore and am reinstalling CO because i replaces conquer.exe with a hacked one and then the bot didnt work so i ran latest patch and it still didnt work so i reinstalled and still didnt work so i did a system restore. now im stuck with version one because shitcash wont let me download.
=/
hope it works now.
|
|
|
07/01/2010, 22:07
|
#178
|
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 1
|
the program runs on server french ????
|
|
|
07/01/2010, 22:14
|
#179
|
elite*gold: 0
Join Date: Mar 2006
Posts: 66
Received Thanks: 1
|
Quote:
Originally Posted by DeathByMoogles
if that works, then great but i just did a system restore and am reinstalling CO because i replaces conquer.exe with a hacked one and then the bot didnt work so i ran latest patch and it still didnt work so i reinstalled and still didnt work so i did a system restore. now im stuck with version one because shitcash wont let me download.
=/
hope it works now.
|
i see,
when you download the new patch, read the Private Message,
thanks, it might work now !
|
|
|
07/01/2010, 22:14
|
#180
|
elite*gold: 0
Join Date: Mar 2009
Posts: 518
Received Thanks: 238
|
Quote:
Originally Posted by mimi3011
the program runs on server french ???? 
|
why dont you try it instead of standing here asking?
|
|
|
Similar Threads
|
REQUEST....CoFr33dom scripts
12/15/2010 - Conquer Online 2 - 13 Replies
hi can someone write me a ninja scritps at frozen grotto 3?
the monsters are DarkElf and DarkLady
|
[QUESTION]CoFr33dom
07/15/2010 - Conquer Online 2 - 2 Replies
I got a question for ya guys !
Is there any way to make
Follow in CoFr33dom ?!
Any script or command ?
Cuz it would be nice for people to make autofollower in it : )
It could help us alot : )
(Btw im working on Full Item Pick/Drop List
It will pick all items and drop Junk ; >>
|
All times are GMT +1. The time now is 02:09.
|
|