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 - DeadIssue2

Pages: 1 [2]
16
Siege Perilous related / ROT Music Gain for Siege
« on: March 02, 2009, 08:34:20 AM »
Code: [Select]
;======================================================
; Script Name: ROT Music Gain for Siege
; Auther: Deadissue
; Version: 1.0
; Shard: OSI Siege
; Date 3/1/2009
; Purpose: Gain music using the ROT skill gain system
; Globals: None
;======================================================
; Special Instructions: Make sure to have an instrument
; in your backpack. Make sure to change the delay to the
; appropriate time for your ROT stage ( 5(300s),8(480s),
; 12(720s), or 15(900s) minutes between max skill gain).
;
;======================================================
Chooseskill Music
set %temp_skill #Skill
Loop:
  Gosub Play_Music
  chooseskill music
  if %temp_skill <> #SKILL
  {
    set %temp_skill #SKILL
    wait 300s ; change this timer per ROT level
  }
  if #skill = 750 ;change based on starting skill+max possible gain per day
  {
     Halt
  }
  goto loop:

Sub Play_Music
  finditem PRF C_ , #backpackID
   IF #findkind = -1
    {
      msg Get an Instrument $
      halt
    }
   Set #lobjectID #FindID
event macro 17 0
wait 2s
return


Cerveza - code tagged

17
Scripting Chat / Comparing Skill Gains?
« on: March 01, 2009, 07:12:31 PM »
I play on siege with the ROT system so every 5 min=a .1 gain.
So what I am trying to do is write a script that will use a skill and check to see if there is a .1 gain after the skill has been used and either try again or wait 5 minutes then get another gain. I have got a sub that will work the skill but I can not figure a way to compare the previous skill to the new skill.

Any help would be great.

18
Scripting Chat / Explaination of Pen Trick Please.
« on: February 27, 2009, 10:26:36 AM »
Preface to this question is....I suck at this and am trying to understand, what and why, so any help here would be great.

I am looking at the pen trick in TM's Hide/Stealth script. I am trying to understand it but I don't really understand the step by steps of the trick and why that it works the way it does. If I could understand that the script would make more sense to me and I could work with it.

Thank you to any and all who can explain this to me.

19
New member introductions / Howdy All...
« on: February 24, 2009, 01:28:41 PM »
Just found the site can't wait to work on my skills and contribute to the community. Thou I am a newb at this I seem to be catching on. Hope you folks dont mind questions.

Pages: 1 [2]