07-03-2009, 03:01 PM
smoke Wrote:Hate Wrote:Andrew, thanks for keeping it mature even at times when you get insulted in ways like that, I wish more people would take example of you, instead of acting like 7 year olds when they are in fact way older than that.
I'm not going to comment on the imatureness in this thread, instead I'm going to comment on the matureness.
When somebody needed help Yankovic, Andrew and Eighty jumped in to help out with what they knew. For every post they made in a mature way all they got was an insult or two, but they still kept it fairly mature and tried to explain what they ment, rather than insulting back and starting a flame war. So instead of saying how disapointed I am in some people and in their imatureness I'm going to say that I am proud of how you guys stayed mature through it all, at least you guys act your age, I wish everybody would do that.
Now for everyone who is not acting their age, listen up cause this is directed towards you: Act mature in this thread or I'll have to lock it and give your account a warning. This may be a game which you started playing when you were 7 years old, but you're not 7 years old anymore, so grow up and stop trying to provoke flamewars. There are ways to tell other players what you think without insulting them or acting imature, trust me, just try it, it's not that hard.
Regards,
Hate
dude were not being imature were saying the skill gain is hard, i mean come on this game is old as **** and it takes so long to actually get a character up and running when there are other games where you just start up play and half fun on the spot
no one likes watching there character do something over 1000000 times for repatition, why do you think all the shards like uo gamers skill gain is easy and have like 800-900 players daily?
I'm pretty sure Hate was talking about all the name calling going on and not people asking for easier skill gain when he said this...
Reyn, I've used Razor for a VERY VERY long time and by now I know how Razor works so please trust me when I say that it will get caught at certain parts of your macro if you don't have the right time delays. Just to explain it to you, let's say Evaluating Intelligence requires a 3 second delay between every time you use it. This is what your macro looks like:
PHP Code:
use evaluating intelligence
target self
wait 1.3 seconds
repeat
The first time you press run it will use the skill, wait 1.3 second, then try to use it again. Since you didn't wait the 3 seconds you will get a message saying 'you must wait to perform another action'. Razor will now timeout at the line 'use evaluating intelligence' for 30 seconds or 5 minutes. So now instead of being able to use Evaluating Intelligence once every 3 seconds, you will do it once every 30 seconds or 5 minutes. That could be why your skill gain is going so slow. The other possibility is as Yankovic and Andrew explained where your delay is too high so you lose time by waiting too long. I'm not saying 20k reps will cut the macro time in half, but it certainly will help!
If you use Injection then it will just steam roll through your macro and won't have those same kind of delays as with Razor. A really simple Injection macro to train Evaluating Intelligence would look something like this (you can find a better one here);
PHP Code:
while 1
uo.exec("useskill 'Evaluating Intelligence'")
uo.exec("waittargetlast")
wait (1300)
wend
Here's the explanation again of how this could go wrong... When you start this macro it will use the skill then wait 1.3 seconds. On the 2nd pass it will try to use the skill again but it won't be able to since you only waited 1.3 seconds and not 3, so it will wait 1.3 seconds again, on the 3rd pass you still won't be able to use the skill since you now waited only 2.6 seconds. So it will wait another 1.3 seconds (3.9 seconds total) so now isntead of using the skill 1 time every 3 seconds you will only use it 1 time ever 3.9 seconds. Not very much if you think you're only using the skill 1 time but if you do it for 2 hours (120 minutes * 60 seconds = 7200 seconds) you will be able to use the skill 1846 (7200/3.9) times but if you had the right macro with a 3 second delay you would be able to use it 2400 (7200/3) times! That's almost 800 more reps in only 2 hours and that's probably worth a few skill points!!
I hope between what Andrew and Yank explained of having too long of a delay and what I explained where you have too short of a delay helped you understand why you need to add delays to your macro and why they need to be the right amount of time.
In case you didn't see it, here is a link to another thread on the order I suggest you use to train your skills.