Results 1 to 3 of 3

Thread: RS3 Runecrafting the Runeguild

  1. #1
    Join Date
    Sep 2014
    Posts
    112
    Mentioned
    5 Post(s)
    Quoted
    55 Post(s)

    Default RS3 Runecrafting the Runeguild

    I was looking at the scripts and noticed there is a public one for soul and blood esswraiths. I was hoping someone would be willing to cook up one that can do lower leveled parts .... for the level 60 or 70 runecrafter. Heck I'm sure lower than that even people would love!

  2. #2
    Join Date
    Mar 2013
    Location
    Argentina
    Posts
    758
    Mentioned
    27 Post(s)
    Quoted
    365 Post(s)

    Default

    Quote Originally Posted by cbrems View Post
    I was looking at the scripts and noticed there is a public one for soul and blood esswraiths. I was hoping someone would be willing to cook up one that can do lower leveled parts .... for the level 60 or 70 runecrafter. Heck I'm sure lower than that even people would love!
    i dont know nothing about the runeguild and runecrafting, but maybe you can adapt the existing script to lower level "wraiths" and share it here? I doubt it will bee too hard!

  3. #3
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by cbrems View Post
    I was looking at the scripts and noticed there is a public one for soul and blood esswraiths. I was hoping someone would be willing to cook up one that can do lower leveled parts .... for the level 60 or 70 runecrafter. Heck I'm sure lower than that even people would love!
    Sorry I didn't see this thread sooner.
    My script is easily adapted for any creature in the runespan, by using the AutoColorAid tool.

    Currently, three esswraiths are supported in that script:

    Simba Code:
    {PROCEDURE -- assignColorInfo
      Purpose:  Assigns color data based on the user's desired esswraith.
      Comments: None.}

    procedure assignColorInfo;
    begin
      case players[CurrentPlayer].strings[0] of
        'Death':
          begin
            with desiredEsswraith do
            begin
              ewName := 'eath';
              ewColor := 7522995;
              ewTolerance := 14;
              ewHue := 0.03;
              ewSat := 1.72;
              ewRCXP := 60.0;
              ewRuneSlot := 8;
              ewPoints := 2.5;
            end;
          end;
        'Blood':
          begin
            with desiredEsswraith do
            begin
              ewName := 'lood';
              ewColor := 11565738;
              ewTolerance := 16;
              ewHue := 0.06;
              ewSat := 0.78;
              ewRCXP := 73.1;
              ewRuneSlot := 14;
              ewPoints := 3.0;
            end;
          end;
        'Soul':
          begin
            with desiredEsswraith do
            begin
              ewName := 'oul';
              ewColor := 14861862;
              ewTolerance := 17;
              ewHue := 0.13;
              ewSat := 1.43;
              ewRCXP := 106.5;
              ewRuneSlot := 15;
              ewPoints := 3.5;
            end;
          end;
        else
        begin
          ClarityDebug('Chosen esswraith not recognized.  Ending script.');
          terminateScript;
        end;
      end;
      case islandSize of
        'Small': islandSizeInt := 35;
          'Big': islandSizeInt := 80;
      end;
    end;

    You can add your own creature support by determining the relevant color info (use CTS2 in ACA) and creating a new entry in the assignColorInfo; procedure, like so:

    Simba Code:
    'Name Here':
          begin
            with desiredEsswraith do
            begin
              ewName := 'last three letters of rune type, e.g. oul for Soul';
              ewColor := color here;
              ewTolerance := tolerance here;
              ewHue := hue here;
              ewSat := sat here;
              ewRCXP := XP gained from one siphon here;
              ewRuneSlot := what inventory slot the runes will be in;
              ewPoints := points per rune;
            end;
          end;

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •