The World of Layonara  Forums

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.


Messages - orth

Pages: 1 ... 9 10 [11] 12 13 14
201
Development Journals and Discussion / Private Development Threads
« on: December 14, 2014, 02:07:34 pm »
Well this took a long time coming and I apologize but I've finally found a simple system for allowing private development threads. The forum software allows for you to flag your threads as "Published" or "Unpublished". Basically by editing existing threads or when creating new threads you can in essence make a thread private by flagging it as Unpublished. Only certain users have permission to view Unpublished threads along with the author.  I'll add this permission for Character Approvers, Gamemasters and Site Admins once I know it's all working.All existing private development threads have been moved to this forum and marked as Unpublished. Private threads will have the shield icon next to them which means others without permission can see the existence of the thread but can't see any of its contents. There is a small exception where, if they hover over the thread title in the forum listing they will see the beginning of the thread so you may want to put things that are unprivate in the first paragraph of the first post or so.Users are free to turn the status from Unpublish to Published and back whenever they like. Just edit your thread and under the Publishing Options vertical tab you can check or uncheck the box for Published. You can also quickly make your thread public by clicking the Published tab at the top.Let me know if you have any questions. -orth
The following users thanked this post: miltonyorkcastle, Acacea, RollinsCat

202
Layonara Server / The NWN Servers are going to be moved
« on: December 04, 2014, 06:55:48 pm »
Hello everyone,I hope you and your loved ones are all well.I've recently been able to secure a great deal for the NWN Server on a much faster machine on a Black Friday special so we're going to be moving it over there some time in the near future.I'd like to get the server up and tested this month so we can confirm that everything is okay to go and I can cancel our previous account before the end of the month. I haven't yet set an exact date and time but I'm thinking maybe late Friday or Saturday night this week.Players shouldn't notice any difference, you will still connect to xora.layonara.com (5121 or 5122).  The IP address will change if you use that but I'll inform you of the new one when the time comes.This may also mean we can revert to automatic cross-server portals without crashes which might be nice but we'll have to test that.The new server will only cost $40 a month in donations so we can hopefully extend NWN Layonara at a fairly inexpensive price for as long as folks still enjoy coming here.For those curious and in the tech know:Existing server is a 4GB RAM, Dual 2.53GHz CPU, 250GB SATA HD running Windows 2k3 Server dedicated system.New server is a 10GB RAM, 10 2.3GHz CPU, 100GB Turbo SSD HD running Windows 2k8 Server cloud server.My initial tests have the servers starting up in half the time the old ones did. I'm not sure how much this will help lag and larger groups but we'll hopefully be able to test that.All the best,-orth

203
Layonara Server / NWN Server Downtime Today
« on: November 30, 2014, 02:07:27 pm »
The servers will be down for a short while for the next hour or less while I perform some backups and updates.
The following users thanked this post: miltonyorkcastle, Acacea, Ravemore, RollinsCat

204
Fixed Bugs / Broken Amulet
« on: December 09, 2014, 07:25:09 pm »
 Posting this for Charm2009.Description: Charm successfully crafted an exceptional amulet of eagle's splendour III and stated it would not cast the daily spell for her. I verified it would not work as it should.
Location: Testing took place in Fort Vehl.
Verified: 

Reproducible: Yes, reproduced. I took the broken amulet from Charm and provided her a new one from the toolset. She tested the new one and it would not give her the option to cast the spell. I tried to equip the amulet myself and had the same result.  
The following users thanked this post: Charm2009

205
General Discussion / Where's the Server Status page at?
« on: February 20, 2013, 12:40:45 pm »
 Finding it hard to navigate the new forums.Question as it is... where's the server status page?
The following users thanked this post: Guardian 452

206
Guilds and Councils / Attention: Guilds and Organizations
« on: January 28, 2013, 04:17:25 pm »
Want to create an icon for your organization to be displayed as a badge for members under their profile?

The icon must be 32x32px and preferably having a black background unless the entire image takes up the 32x32 in which case the background is irrelevant. Please reply and attach the image in this thread.

Here's an example shot of some of my "badges" on the new system.




Also please note you no longer need to apply for membership to specific deity based forums or the druid one. The system will automatically know you have a character who follows that deity (provided your deity is correctly entered upon creation or a GM has set your deity).

207
Hello!

Firstly, Layonara's servers will be renewed again for a year. Yay! So you can rest easy that as long as there are volunteers to keep the cogs greased the world will continue to run.

Secondly, there are about to be some significant changes to the sites. Every Layonara site and feature has been rolled into one all new site. That includes LORE, the forums, the gallery, the calendar, the character pages, the personal messages, the downloads, the devlog etc.

Let me say the new site is awesome. I can't begin to describe how many features exist. I think players will love the ability to tag anything with your character and then your character's page aggregates all this information. Whether it's a forum topic, a gallery image, maybe quest participation each "node" can be associated with as many characters as you wish.

Here's a current screenshot of the front page to give you an idea of the look and feel of the site.



Anyway, it's getting pretty darn close to being ready so I hope you share in my excitement for its new launch. I'm sure some of you will be a bit concerned with transitioning to a new system but we've tried to keep every single feature that exists already into the new site.

I'll be happy to answer any questions about the new site and we'll go through a period of adjustment I'm sure but moving forward to have the entire codebase in one place is a real benefit to everyone's end.

Also as you may already know, the servers are being paid for their annual renewal again and every dollar you can help to donate will ease my expenses. I've included the links to donate once again for your convenience.

Donate to Layonara in AUD

Donate to Layonara in CAD

Donate to Layonara in EUR

Donate to Layonara in USD

Thank you,
James

208
Yep, I got curious one day after finding out how easy it is to set up log rotation in Linux from within the shell script used to run NWN, so I wondered if I could do the same thing in Windows. Using Powershell, it turns out to be fairly simple.[LIST=1]
  • Open Notepad (or your text editor of choice)
  • Copy and paste the following code into the new file:
    Quote
    param ($nwn_path, $log_path, $dest_path, $log_pref)
    $DateStamp = get-date -uformat "%Y%m%d-%H%M%S"
    $final = $log_pref + "_$DateStamp.log"
    move-item "$nwn_path\\$log_path\\nwclientLog1.txt" "$nwn_path\\$dest_path\\$final"
  • Save the file to your NWN folder as: nwn-log-rotator.ps1 Note: if using Notepad, make sure you change "Save as type:" drop-down to "All Files (*.*)" or else it will add a .txt extension to the end of the file name
  • Create another new text file and paste the following into it:
    Quote
    @echo off
    SET NWN_PATH="C:\\NeverwinterNights\\NWN" cd %NWN_PATH%
    start /w nwmain.exe +connect 
    173.198.229.123:5121 +password {player password}
    powershell %NWN_PATH%\\nwn-log-rotator.ps1 %NWN_PATH% logs logs nwclientLog
  • Save the file as Layonara-West.bat (or whatever you like, as long as it has a .bat extension)
  • Close your text editor
  • If desired, create desktop shortcuts to the .bat files for easy access.
Basically, that's it, except replace {player password} with the correct player password, given on character approval (also, remove the {}, in case there's any confusion). This will connect you to West and log you in automatically. Some of you may have NWN in a different folder than I do. If so, edit line 2 of the .bat file to point to the correct location. You can create a second file to connect directly to Central by using :5122 in the 4th line of the .bat file like this:
Code: [Select]
start /w nwmain.exe +connect 173.198.229.123:5122 +password {player password} If you do not want to have separate direct-connect script for each server, just leave the connection parameters off:
Code: [Select]
start /w nwmain.exe Regarding the last line in the .bat file, the Powershell script created in Step 2 takes four arguments. In order, they are:[LIST=1]
  • Folder path of NWN
  • Folder path of the nwclientLog1.txt file (NWN's default log) relative to the NWN path
  • Folder path where the rotated log file should be saved relative to the NWN path (this is usually the same as the path in #2)
  • Prefix for the new log file
The Powershell script will rename/move the file to the destination folder with a name in the format: prefix_datecode.log, where prefix is from #4 and datecode follows the format of: {4-digit year}{Month}{Day}-{Hour}{Minute}{Second}. So the datecode for October 26th, 2012 at 3:27:15pm would be: 20121026-152715 Lines 2 and 3 of nwn-log-rotator.ps1 can be altered to change the naming format of the rotated log files. These scripts are presented as-is, and I don't guarantee they'll work right for your needs or at all...heh. Test them out for yourself before you rely on them. You've been warned. For convenience, I've attached the scripts above to this message. Un-RAR them into your NWN folder. You'll need to edit the Layonara-West.bat as described above to put the right player password into line 4 and, if necessary, adjust the NWN_PATH on line 2.
The following users thanked this post: swoop, Chazzler, Xiaobeibi, Aphel

209
Fixed Bugs / Titanium Arrowheads crafting
« on: March 04, 2015, 09:11:59 pm »
Description: Upon crafting other arrowheads than titanium, upon a failed roll you receive a 1 Mangled Metal of the appropriate metal being used. Titanium arrowheads recipe does not give this Mangled Metal upon a failure. Location: Did so at Center's craft stations Verified: Reproducable
The following users thanked this post: willhoff

210
Greetings everyone,

This weekend I'll be transferring the forums, LORE and IRC over to our new server. I'm going to begin late tomorrow night around 11PM Eastern. My plan is to move IRC over first to be able to use it as a tool to communicate the progress on the forums and LORE. I'll also be using Twitter to confirm progress of the migration.

LORE character updates may be temporarily broken when the transfer is moved over but will be remedied as soon as possible. I don't foresee a need to shut down the NWN server but it's possible it might be required in case I've forgotten something.

I expect the whole process to take between 4 to 6 hours but if everything goes well it may be sooner. Of course if I run into hitches it could also be longer.

DNS migration may also cause propagation issues but that's out of our control. Basically this means that when we change which server the web address forums.layonara.com points to it takes some time for the global system to be aware of this change. Hopefully it will propagate fast so there's no concerns on Saturday but if there are I'll provide some technical help to temporarily alleviate the issue.

I hope all is well with you and your loved ones.
-orth
The following users thanked this post: Juzzo, Dorax Windsmith, Nehetsrev, Masterjack, Alatriel, willhoff, RollinsCat, Pandapuff7

211
Important Layonara Announcements / Tech Update and a Request For Donations
« on: February 18, 2012, 04:55:51 pm »
Hi everyone,

I've made my decision about server hosting and we're not going to see as much down time as I suspected. We do have to transfer the web/lore/forums/irc to a new server but I suspect that will only take a late night downtime of those services, I expect that will be taken care of some time in the last few days of February.  The NWN servers are going to stay as is and as far as I can think, they will not need any sort of downtime.

While I worked on cutting some costs with our host provider I decided to pay for an entire year for all our servers. This comes at a much bigger front end cost of course, but in doing so I save 10% for the full year. This means we're committed to at least another year of all of our servers.

Now I know we haven't had the Donation Tracker working. I was hoping that by creating a manual PayPal donation campaign then whoever donates can post a reply to this thread (unless they wish to be anonymous) and I will confirm their donation with my gratitude and a virtual hug. I'm not looking for any specific target dollar but if I could get back $500 over the year from the community it would be fantastic. There's no timeline for this, so if things are tight right now I understand, but every little bit, even $5 helps!

For convenience I've created links to pay in four different currencies, AUD, CAD, EUR and USD. There is an area on PayPal to add a personal message, please include your forum or character name so I know who's who.

Donate to Layonara in AUD

Donate to Layonara in CAD

Donate to Layonara in EUR

Donate to Layonara in USD

Thanks to everyone for helping and once this server migration is complete I look forward to working hard on the new community site.

Best wishes,
James

212
General Discussion / orth checking in.
« on: February 02, 2012, 12:14:20 am »
Hello friends, old and new. It's been a while since I've been able to sit down and take a breath but I promised myself I would take the time to catch up on what I've been up to and some of the things that have to be done on the technical end over the coming month.

To start, I wanted to say that Layonara is with my heart every day. The friends I made and the moments I shared in its fantasy setting will be cherished moments I'll hold through my whole life with no regret. The past year I've been at a distance, occasionally trying to force my way back into the magic that I know makes me feel like only roleplaying can make me feel. It's been there for short whiles but real world priorities get in the way and days away become weeks and then months. I'm not going to try to explain nor am I sure I even know why, it just happens.

Life's been pretty good. I've become a bit of a sports nut, I even bought season tickets to the Blue Jays for this summer. Nothing new on the love side of things, though a kiss stolen here and there. Work has had me with a lot less time than I was afforded a few years ago but I remain physically and mentally very healthy.

As with playing, my desire for working on the MMO has had to be forced and again other worldly concerns leave me getting side tracked then ultimately not having the fortitude to jump back into the development. I am making progress in a core area though and when I can catch a breath and bare down for the final touches I'll be eager to move on to the areas that others have continued to bear down upon.

Over the coming month there's going to be a few headaches from the technical end. One of our servers is old and has to be updated, this means I have to make a decision to either stay with our existing server setups or consider moving all of our servers to a cloud based setup. I've not made that decision yet and it's a pretty complicated one as Dorganath would be able to attest to as we discussed it on IRC. Once I make that decision I will get a better idea of downtime for all our servers, web, irc, nwn etc.

I touched on the core area I'm working on with the MMO and that's focused on the web end of things. Using the versatility and module rich Drupal CMS I'm developing both a front end to a new updated community site and a back end to the MMO database structure. This could mean some heavy work needed on LORE and perhaps *cringe* if I'm really feeling adventurous, I would transfer the entire forum to drupal's forum. Alternatively there are modules that allow both vBulletin and Drupal work side by side. I wonder, do any of you have Drupal experience?

So I guess that's kind of it for my update. I'll be informing you via the Important World Announcements forum about server downtimes as soon as I can possibly know and with as advanced notice as possible. I apologize in advance if this gets in the way of some scheduled quests.

My best,
James

213
Description: After placing Acid Flasks, Alchemist's Fires, and/or Choking Powers into the Bank Chest, upon reopening the Bank Chest, there are less Acid Flasks, Alchemist's Fires, and/or Choking Powers than there were. For example, I had just had (in stack sizes): Acid Flasks: 10, 10, 6 Alchemist's Fires: 10, 10, 3 Choking Powers: 10 Upon reopening the chest: Acid Flasks: 10, 10, 2 Alchemist's Fires: 10 Choking Powers: 10 The Bank Chest had also spat out some of the Alchemist's Fires onto the ground, but they could only be detected by floating the mouse cursor over the Bank Chest. The Bank Chest is not at the item count limit. Location: any Bank Chest Verified: Reproducable: Yes. This has been ongoing for a while, though I had only just twigged what was going on.
The following users thanked this post: Chazzler, Lance Stargazer

214
[SIZE=16]Bug Report[/SIZE] Description: Every time the exchange counter at the Angels guild store is used it takes several seconds for items to transfer. Now, if this was just a local occurance, it wouldn't warrant a report, but while I was trading with Tyra Sunday night, I had two different players not present tell me they were experiencing severe lag as DB placed items to and from from this device and Tyra looked at them. Worth looking into? I'll let you decide. Location: Angels Guild Store Verified: Reproducable: Yes, just use the counter (2 places) at the Angels guild store.
The following users thanked this post: Chazzler, willhoff, Alazira

215
Fixed Bugs / Center Bug Quest
« on: April 09, 2017, 09:13:05 pm »
[SIZE=16]Craft Hall Caretaker telling Lies to Send Me on Pointless Journeys[/SIZE] [/U][/I]
Description: In the Center craft hall, I have been fooled several times over (much to my dad's enjoyment) that I still haven't done the bug quest. However, I say, "sure, I'll do it for you", get the carcass, and try to turn it in. The caretaker just gives me the quest again. My journal says I've done it, but the NPC still tries to give me the quest. I can't to the quest, but it still his confusing... Location: Center Craft hall Verified: Merlin34baseball could check, but he hasn't yet. Reproducible: Certainly. It happens every time I talk to her.
The following users thanked this post: merlin34baseball

216
Hello again folks,

We are reworking our server structure over the rest of the week to prepare for the coming excitement of the plot quests and to cut some costs.  One of our development repository and team collaboration servers (silkwood) is being transitioned to run on the same server as our forums and lore server (garent).  We don't expect this to cause any change in the performance you see from these sites but it will mean some occasional downtime for the forums and lore as we add some additional web server capabilities.

Once this transition is complete and silkwood goes offline we will be using the cost savings to temporarily support a second server for NWN to run quests when needed. Hat tip to Dorganath for offering to pay for the difference to support the windows server for this and for the idea in general.  To support this capability there will need to be a time for us to temporarily take down the nwn servers to properly mirror the database and the character files over both servers. We'll try to perform this late at night/early morning when things are quiet. Exact date and time is not known but I will follow up in this thread when we decide upon those details. We estimate it will occur some time in the next week.

Feel free to ask any questions should you have them.

-orth

217
This suggestion thread was originally started in the "Bug Reports" forum as it was discovered that Silver and Titanium enhancements were not providing slashing weapons with the extra damage as intended due to slashing damage not stacking. The suggestions to correct this problem (as more detailed described in the provided thread) were as follows: 1. Create a new version of the Silver and Titanium Enhancements that does Bludgeoning Damage. So, now there would be two types of these enhancements, one that does slashing and one that does bludgeoing. The bludgeoning could be used on slashing or piercing weapons and the slashing could be used on bludgeoning or piercing weapons. This would resolve the stacking issue. Important to note that due to mechanics, the damage provided by the enhancement would take on the damage type of the base weapon (ie, adding a silver slashing to a bludgeoning weapon would convert the slashing silver to extra bludgeoning damage). This fix would allow all weapons the ability to be enhanced with titanium and silver and would not cause any overbalancing issues. 2. Change the Silver and Titanium to do elemental damage, not slashing. Suggested elemental for silver would be fire, suggested elemental for titanium would be cold. This would still allow someone to put an elemental on their weapon for base/non-vs damage, as long as it was a different type of elemental damage (ie, could have a Mithril Battle Axe with 1d8 Silver (fire) damage for vs undead/shapechanger and a 1d8 Acid damage). If you have any comments or suggestions or want to thank me that's ok too:)
The following users thanked this post: miltonyorkcastle, Chazzler, jadewillow, ShiffDrgnhrt, willhoff

218
Our server hosts have notified us of downtime for ALL of our servers between Friday, October 22nd 2010, between 11:30PM and Saturday 2:30AM Eastern Time.  I will be shutting the servers down a few minutes before the downtime.

This means all nwn servers, forums, irc, lore, web site will ALL be down.  I will monitor the downtime and be prepared for any problems after the servers come back up.  If there are any serious delays or problems where I can not communicate through normal means I'll tweet it and post it on our wall at Facebook.

Below is the message our hosting providers sent to us for those more interested.

I apologize for any impact this may have on any planned excursions.

Quote
Today we have been advised about an electrical problem with the UPS system powering our suite J1 @ 1250RL.

We are required to perform an electrical maintenance on this UPS system that will cause a 30-45 minute interruption of electricity. Unfortunately there was nothing Netelligent could have done to foresee or prevent this problem.   We will be attempting to safely shutdown each server a few minutes before the maintenance window indicated below. However, if you would like to login remotely and power down your server beforehand, our technicians would find it very helpful.  

We apologize for this inconvenience and understand the impact it has on your business.

219
Implemented Ideas / Server Status
« on: January 27, 2015, 11:09:49 am »
A thought occurred ... *watches as people duck for cover* I know GMs get additional information when looking at the server status re locations of characters, deity info, level splits, etc ... and also when a GMN is on a server. Is there any reason why this is not shown to players? I know players can see when GMs are on at the login screen but maybe, for some folks, the decision to play Layo (or pursue some other activity) is made when checking the server status. People might be more inclined to jump in-game when a GM is online thinking there is at least some chance of GM interaction? You can come out from cover now. *waits until Dorg has left whatever shelter he'd been hiding behind* Ha! Fooled ya! I also want poison duration extended further! :)
The following users thanked this post: Serissa, Hellblazer, Lynn1020

220
Important Layonara Announcements / Layonara on Facebook
« on: January 31, 2010, 05:51:38 am »
Layonara now has a Facebook page and we would love to have you listed as one of our fans!  Keep up to date with official announcements, latest developments and other goodies as Layonara moves forward in what will prove to be a very exciting year for our community, both old and new members.
The following users thanked this post: Leanthar, EdTheKet, ShiffDrgnhrt, Spike, Lance Stargazer, geloooo

Pages: 1 ... 9 10 [11] 12 13 14