Navigation

    City of Arabel

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Deloril
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 32
    • Groups 0

    Deloril

    @Deloril

    338
    Profile views
    32
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Deloril Unfollow Follow

    Latest posts made by Deloril

    • RE: Tech Support..

      Re the red X's, go into your internet settings and enable viewing pictures. Also, see if your running through a proxy server when you shouldn't be. For both of these things, google is your friend.

      posted in General Discussion
      D
      Deloril
    • RE: Favorite IRC / Discord quotes!

      (5:53:07 PM) Relonor: Syntax healed me.
      (5:53:21 PM) Relonor: Maybe he isn't all the horrific things the other DMs say.
      (5:53:29 PM) Syntax: I like to lay on hands you.
      (5:53:42 PM) Relonor: ..on the other hand, what do I know.

      posted in Off Topic
      D
      Deloril
    • RE: When do you know, that you spend too much time on coa?

      @Elegy:

      @coa_deloril:

      When your clearing tables at work and you see a peice of paper with odd scribbles on it, and you immediately think 'PLOT HOOK'

      When you resurrect threads nearly a year old.

      Feels like i was reading it just the other day :(

      posted in Off Topic
      D
      Deloril
    • RE: When do you know, that you spend too much time on coa?

      When your clearing tables at work and you see a peice of paper with odd scribbles on it, and you immediately think 'PLOT HOOK'

      posted in Off Topic
      D
      Deloril
    • PC Description Changer

      Save you guys a bit of time, if you choose to implement.

      //Written by Deloril. Simply changes the description of the PC, either appending or replacing.
      void main()
      {
          object oPC = GetPCSpeaker();
          string sOldDescription = GetDescription(oPC, FALSE, FALSE);
          string sNewDescription = "Lol heres a test"; //add getter from wherever you want the text to come from. (dot command, etc)
          int iAppend = 0; //TRUE will append the description, FALSE will replace it.
      
          //put some form of test deciding whether to append or replace, setting iAppend appropriately
      
          if(iAppend)
          {
              string sToApply = sOldDescription + sNewDescription;
              SetDescription(oPC, sNewDescription, FALSE);
          }
          else
          {
              SetDescription(oPC, sNewDescription, FALSE);
          }
      }
      
      posted in Scripting
      D
      Deloril
    • RE: The Darkest Wand (chpt 1-44 of my novel – 2/3 done!)

      Damnit, got all excitred about reading this book, not seeing the age of the posts :(

      posted in Off Topic
      D
      Deloril
    • RE: CoAers in New Zealand Check In

      There was also Lord_Raven88.

      That said, with how messed up things are atm, I wouldn't be suprised if you don't hear from a lot of us for up to months. Is how long they think it could be before services (water, power, interwebs) can be restored city-wide.

      posted in Off Topic
      D
      Deloril
    • Dispell Invis Through Conversation

      Pretty much as the subject says, as its come up a few times since I started here, figured I'd throw this together.

      /*Written by Deloril - 14/02/2011
       *Conversation script that clears all invisibility effects except,
       *and all creature and item granted abilities that use the Invisibility
       *or Improved Invisibilty spell effects to run.
       *NOTE: If used by the caster of invisibility Sphere, all becme visible, not
       *just the caster. If someone inside the Sphere uses it, only they become visible.
       *Also clears Concealment bonus from Improved Invisibility*/
      
      #include "x0_i0_spells"
      void main()
      {
          //Declare major variables
          object oPC = GetPCSpeaker();
      
          if (GetHasSpellEffect(SPELL_IMPROVED_INVISIBILITY, oPC) == TRUE)
          {
              RemoveAnySpellEffects(SPELL_IMPROVED_INVISIBILITY, oPC);
          }
          else if (GetHasSpellEffect(SPELL_INVISIBILITY, oPC) == TRUE)
          {
              RemoveAnySpellEffects(SPELL_INVISIBILITY, oPC);
          }
          else if (GetHasSpellEffect(SPELLABILITY_AS_INVISIBILITY, oPC) == TRUE)
          {
              RemoveAnySpellEffects(SPELLABILITY_AS_INVISIBILITY, oPC);
          }
          else if (GetHasSpellEffect(SPELLABILITY_AS_IMPROVED_INVISIBLITY   , oPC) == TRUE)
          {
              RemoveAnySpellEffects(SPELLABILITY_AS_IMPROVED_INVISIBLITY   , oPC);
          }
          else if (GetHasSpellEffect(SPELL_INVISIBILITY_SPHERE, oPC) == TRUE)
          {
              RemoveAnySpellEffects(SPELL_INVISIBILITY_SPHERE, oPC);
          }
      }
      
      posted in Scripting
      D
      Deloril
    • RE: Seriously?

      Invis gank indeed, check out the phat lewt in the inventory on the right >.>

      posted in Screen Shots
      D
      Deloril
    • RE: High Level Quests and Doing It Hard Core

      So a possible fix would be to re-implement the True Rez option, and if the 0XP loss was an issue, just make a script so that when TR is used, remove a custom amount of XP. Takes away some of the "holy crap dont want to delevel again, not doing quest" without giving a free pass back to the playerbase.

      posted in General Discussion
      D
      Deloril