Simple Xkore question

International

Moderator: Moderators

DaveWinters
Noob
Noob
Posts: 6
Joined: 15 Dec 2008, 11:46
Noob?: Yes

Simple Xkore question

#1 Post by DaveWinters »

Simple question that I've failed to find the answer to. When using Xkore (with visualkore) is there any sort of hotkey that activates pause botting/manual botting while on the ragnarok client or will I have to manually activate this from visualkore itself?

Many thanks.
yoshi
Noob
Noob
Posts: 11
Joined: 04 Apr 2008, 19:26

Re: Simple Xkore question

#2 Post by yoshi »

Look up alias in the manual as a part of config.txt
DaveWinters
Noob
Noob
Posts: 6
Joined: 15 Dec 2008, 11:46
Noob?: Yes

Re: Simple Xkore question

#3 Post by DaveWinters »

alias_(<alias name>) [<command>]
This option allows you to set up custom command names or aliases for faster console command issuing.

Example:
alias_fullheal ss 28 10
alias_laagg c laaaaggggggIn the example above, typing "laagg" in the console has the same effect of typing "c laaaagggggg".

Note. You can specify multiple aliases as long as each alias names are unique.
Thanks for your reply but I don't see how that helps me much :/ Typing a command into the ragnarok chat box would also activate it in VisualKore? I don't actually know the commands for pause/manual/automatic botting as its only in a drop down menu on VisualKore :S
natas
Noob
Noob
Posts: 15
Joined: 10 Dec 2008, 04:16
Noob?: Yes

Re: Simple Xkore question

#4 Post by natas »

A long time ago I did something like this so I could teleport without using sp. I'm pretty sure there is still a command to send text from the clients chatbox to openkore and that it is ";". What i did was change the emotion shortcuts ingame i think it's alt+n or m and add the openkore commands i wanted to use instead of the emotions. For example i put ";tele" for the first one and whenever i pressed alt+1 i would teleport. Try setting yours to ";ai on" and ";ai manual" or ";ai off"
DaveWinters
Noob
Noob
Posts: 6
Joined: 15 Dec 2008, 11:46
Noob?: Yes

Re: Simple Xkore question

#5 Post by DaveWinters »

That helps alot thanks natas ^^

I have another question which I figure it best asked here rather then start a new topic.

Do command on PM:

Code: Select all

automacro doCommand {
   console /\(From: (.*)\) : do (.*)/
   call {
      $nick = $.lastMatch1
      $auth = @eval (defined $::overallAuth{"$nick"} ? $::overallAuth{"$nick"}:"None")
      if ($auth == 1) goto auth
      do pm $.lastMatch1 Pardon...?
      stop
   :auth   
      do $.lastMatch2
      pause
      do pm $.lastMatch1 All done.
   }
}
This macro works great but I would rather have it work using party chat over pm's. I bet its a simple change and I've tried messing around with it using the manual as a guide but I either have it still only work with pm's or not work at all.

Any insight on fixing this would be much appreciated.

Thanks again.