Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Xanderyum

Pages: [1]
1
Script Debug / Targeting zombies on freeshard
« on: February 23, 2014, 03:54:42 PM »
So, to preface this, the free shard I play on does this zombie event once in awhile.  To play you go to a npc in town double click and the screen fades in and out, and poof your a generic toon in a map full of zombies!  You can attack just by double clicking, but that drops your swing speed to like once every 45 seconds.  Or you can "say" numbers with the "!" in front of them, and you swing your weapon or shoot your bow in that direction.  Thus creating an arcade like feel to the zombie event.  

Example if you look at your number pad that is 3x3 you put your character in the "5" IF a zombie is in your "8" spot you say !8 and your toon swings in that direction.  To start I'd also like to say the easiest way to play this is to set macros in razor for each of the 8 directions you swing in.

BUT!  I'm assuming I could write a script that says to find the zombie and if zombie is x+1 and y to swing in that direction,  basically say the script would "see" the exact spot the zombie was in and find the correct if statement that relates to this......? 8 if statements in total.

Code: [Select]
:First I'd set up the part to tell the script what I'm looking for...ZOMBIES!

Set %zombie "XYZ" :At work so, not too sure on the exact ID of the zombies

Then the script loop would start and It should have a name here right?

The_Kill_Zone :name of the killing loop

Finditem %zombie G_1

IF #findx = #CHARPOSX + 1 || #findy = #CHARPOSY - 1
 {
 msg !7 $
 }

else

IF #findx = #CHARPOSX + 1 || #findy = #CHARPOSY  
 {
 msg !8 $
 }

else

IF #findx = #CHARPOSX + 1 || #findy = #CHARPOSY + 1
 {
 msg !9 $
 }

:and so on for all 8 IF statements..
wait 5 :there is a delay for the weapons each category is differen, So adjust as needed
goto The_Kill_zone



: multiple edits at this point
:is the above statement what I need to find a zombie and swing in the correct direction?

:here is where I get a little unglued, as I haven't really written much in the form of scripts, just altered pre-existing ones.

DONE I think  --->>> How do I tell the script to compare the location of the zombie to me, and if its in one of the 8 squares around me, to speak the correct "!(number)" ?

DONE i think ---->>> I went with the 8 IF statements     I do know I'd need 8 "IF" statments, or a statement with an adjustable variable that is changed each find cycle?  the idea with 8 seperate "IF" statments is easier to wrap my brain around, but more code I believe.

DONE I think --->>>>So after we have found any zombies with in one square of me and swung at them, we need to repeat the process all over again.



DONE  ---->>>Also, I'm pretty sure a small wait is needed after each swing.

Cheers!

Xander

2
Script Debug / Scripting in Pre-AOS
« on: January 14, 2014, 02:36:12 AM »
Hello all,

I am modifying a script to do different things, but It's pretty unrecognizable compared to how it started.
What I'd really like to know is, if I snoop a backpack, and then search a backpack for a bow, how to i differentiate between a regular bow and an unidentified bow?  The #property only shows $bow   !!!

I have found a solution. Kind of......If you left click on anything in game a description comes up, this description also shows up in the journal....So, I think I'd left click each bow and if the description in journal shows [Unidentified] then I steal it!

I'd have to use journal scan, which looks like not a biggy.  I think what I'm wondering is......how do I Look for something and then make my mouse left click it once?

Cheers!

Xander

3
Hello!

I'm wondering how to make two clients attack the same thing, but directly, how to make my slave toon attack the same thing my primary toon is attacking.  I know I could make it attack specific things, such as find ID xxx attack that ID.  But, I'd really like my slave to see that I attacked a specific mob, or grey or red toon, and do the same.  Mostly, the idea is to kill mobs twice as fast.

after I get this, then I'll tackle xhealing, dual recalling to locations, and a hot key to start and stop the script together.

My end game, is to be able to attack daemons or dragons at the same time, with out my slave deciding it wants to aggro a mob that hasn't targeted us first.

Is there an uncomplicated way to achieve this?

Cheers!

P.S. If you feel that giving me the "answer" is too easy, please point me in the right direction, so that I can try and figure it out.  I understand some things are scripters trade secrets, and I'm not trying to steal your ideas.

4
Off Topic / Decentralized Virtual Currency AKA Bitcoins
« on: April 10, 2013, 12:23:54 PM »
I am not the end all on knowledge for this topic, I am going to paraphrase things into a method I understand, and I offer no financial advise for this. I am involved only as I have interest in economical things.

So, I'll try to give links to what I have learned and since it's my thread I'll throw around my $0.02 as well.

Long and short is this, Bitcoins are a form of currency that is created with hardware "hacking" security type algorithyms. The reason it has value, is because people like you and me give it value.  It's basically non hackable, it has a limit on the amount that will ever be available, it's decentralized.

Gizmodo http://www.gizmodo.co.uk/2013/04/what-is-bitcoin/

Wiki http://en.wikipedia.org/wiki/Bitcoin

Bitcoin Mining is using your hardware, CPU, and GFX cards to crunch these algorithyms. 

A side note, there are a few manufacturers of some new hardware called ASIC chips that is designed to only bitcoin mine, and do it very well.  However there is a lot being said negatively about these companies scamming and being a hoax.

https://bitcointalk.org/index.php?topic=114329.0

Here is the site that is one of the GOTO exchanges, and will give you an up to date on the value of the bitcoin

https://mtgox.com/

And here is a site that can help you in speculating the profitability of your mining rig.

http://www.bitcoinx.com/profit

Cpu's don't process fast enough to be worth it, and Nvidia Gfx cards are generally under powered, as the more Shader Processors (SP) you have the more you can crunch.  Nvidia uses other math and tech to do the same job as SP. ATI is the place to look for high SP count.

Here is a site that shows the crunching ability of a large amount of ATI cards, as well as rough estimates on cost and electricity used.

https://en.bitcoin.it/wiki/Mining_hardware_comparison

I know this little write up doesn't offer a ton of answers to the questions that this idea creates, and Google  and Bitcoin forums can take care of that.

My setup is a HD 6950 with the 6970 shaders unlocked, and for 200 watts i get about 400M/Hash

I'm also in negotiations for a couple of HD 5870's
which all said and done should put me at 1200-1100 M/Hash for under 600 watts.

Leave questions, and your opinions here and discuss as you feel the need to.

I keep no secrets and will share what I know.

As of this write up the Bitcoin was crashing. It was at $266 this morning and now down to $149.

I strongly recomend you not try to make this a retirement plan, but a hobby.


Cheers!
   Xander

P.S. The spelling and grammar police can piss off. >:(






















































5
Off Topic / Tough Mudder! Seattle
« on: July 21, 2012, 03:29:09 PM »
Not sure if any of you have heard of this little competition, but I'm putting together a team for it. And all are welcome! It's in Seattle September 29th. Let me know if you can handle the Pain!

6
Stealth archive / Where is Stealth? It's very stealthy?
« on: April 28, 2012, 04:28:33 PM »
Yes, as stated. Where do I DL stealth from?  I had it before but gave up and now i want it again?  :( but I am not sure of it's stealthy location.
 
Cheers,
  Xanderyum

7
New member introductions / My name is Xanderyum? and I don't know why
« on: August 23, 2011, 11:28:55 PM »
I have been rockin' the OSI shards for a few months after being away for around five years.  I feel stuffed crust pizza beer and light porn should be available at all videogame stores. I don't know why my name is Xanderyum, I feel I had maybe drank to much Beautiful IPA of some sort that night. I have a thing for Mules. I have just about wrapped up my second mule on pacific.  Actually I find something funny about watching my little guy clobber miasmas as well. mostly because I just recently learned about the "sampire" before that I had a Dexxer who couldn't solo Miasma at all. I rock a Mowhawk as well as one of my sons. And I operate a robot at my job, she stacks boxes.  Where I live (a few hours near Seattle) it rains alot. So UO helps me pass the time.  I am Looking forward to joining this community! Also a side note the other day i took the plunge and started learning Euo. brain overload!

Pages: [1]