PlaneShift

Welcome to the PlaneShift BugTracker!

Your guide on how to use the bugtracker:
Bug report guide
Bug report process flow

Note: by default the search function only searches descriptions of open bugs. To search all use this link

When you want to report a crash, make sure you have some idea of what is causing it, so it can be reproduced. In all other cases, including hardware related crashes, use the technical support area in the forum.

spacer Task Type ID Private Area Severity Status Opened by Assigned To Summary Last change Last changed by spacer Votes
Bug Report 5891 No Crafting Transformations Medium New Daevaorn Davide Vescovini Unmixed Kikiri soup is refusing to combine 2013-02-15 Daevaorn 3 0
Yesterday I tried making Kikiri soup, but didn't manage to. The third to last step, combining the different ingredients is not working as indicated in the crafting book:

//Combine Boiling Salt Water, between 4 and 2 Sliced Carrots, between 4 and 2 Sliced Pungent Tubers, between 4 and 2 Dash of Ground Wyn Reeds, Pile of Kikiri Meat Chunks into 1 Uncooked Kikiri Soups//

I tried combinations with equal amounts of 2, 3, and 4 of each item. I tried mixed numbers. I tried using just one of each. None of the combinations seems to be acceptable and yields a combined product as indicated by the crafting book.

I also tried dequipping any tools I was holding, to no avail. I was working in Jomed's Kitchen. Haven't tried with a non-action-location version of the Kitchen Table yet.
Bug Report 5889 No Engine High New Venalan KA triggers seem to be taking priority over quest trigg... 2013-02-12 Untra Vestido 1 0
In the quest "A Husband's Dilemma" step two has a 'about book' trigger, as it always has. But since the update Jeyarp is now responding with the response to the 'about book' KA and not the quest step response. This has the effect of breaking the quest as you cannot get the step to trigger despite nothing being wrong with it.
Bug Report 5888 No Crafting Medium New Sarva Ghars Davide Vescovini Dace Steaks 2013-02-15 Davide Vescovini 2 0
According to the Dishes with Fishes book after you clean a Dace you should get 2 Dace steaks. Instead you get two Dace Fillets. since the Dwarven Dace Steaks recipe calls for combining 2 dace steaks and a beer mug since you have Dace Fillets the combining process fails.
Bug Report 5887 No Crafting Medium Unconfirmed Sarva Ghars Davide Vescovini Wrong oil in Trasok's Beer Battered Trout? 2013-02-12 Davide Vescovini 1 0
I Think there is a mistake in the fish cooking book. For Trasok's Beer Bettered Trout it calls for hot Wragberry oil, which you need the second herbalism book to make. I think that is suppose to be hot cooking oil which you can make with the fish book. Sort of doesn't make sense to need a different book and different skill to make this recipe.
Bug Report 5885 No Crafting Medium Unconfirmed Daevaorn Davide Vescovini Wrong crafting step for "Diluted Tloke Venom Essence" &... 2013-02-12 Davide Vescovini 1 0
The entry says
"//Combine **Distilled Water, Ground Tloke Stinger, Distilled Water, Ground Tloke Stinger** into 1 Mix of Tloke Stinger and Distilled Waters//"

since that is not
´"//Combine 2 Distilled Water, 2 Ground Tloke Stinger into 1 Mix of Tloke Stinger and Distilled Waters//"
I assume there has been a mistake in setting up the recipe and it should be

"//Combine **Distilled Water, Ground Tloke Stinger** into 1 Mix of Tloke Stinger and Distilled Waters//"
instead

The same holds for the actual resulting antidote as well as the Gawert versions of the same two products.
Bug Report 5884 No NPC Low Unconfirmed bonifarz Unresponsive NPCClient or NPCs to players interaction 2013-02-14 Davide Vescovini 5 0
Yesterday evening GMT I was curious about the new tribe behavior, but all of the NPCs on OjaRoad1 and the arena were perfectly passive - Attacking the NPCs, casting spells on them, sitting on their feet, any combination of these actions... no response, all NPCs were like paralyzed. I hear the monsters fought back and chased other players at the same time, so maybe some of Bonifarzia's Stats or anything else causes a broken response of the tribe entity.
Problems: Abuse for hunting, no practice possible from being hit.
Bug Report 5883 No Updater/PSLaunch Medium New Mario Rohkrämer Anders Reggestad Welcome message sometimes contains updater XML content 2013-02-11 Rezso Gajdoczy 3 0
Roughly guessed, only in about 1/20 runs, but it seems that the launcher cannot reliably tell apart incoming packets from different requests.

{{www.ligh.de/PlaneShift/pslaunch_confused.jpg}}
Bug Report 5882 No Misc Very Low Fixed pending release Untra Vestido Davide Vescovini Misspelled "disesase" 2013-02-12 Davide Vescovini 1 0
There is a typo in "You do not contract any __disesase__" (it would be "disease")
Feature Request 5881 No Player Guide Medium Unconfirmed Ludwig Dickmann Report command: add "reason" 2013-02-09 Ludwig Dickmann 0 0
I had discussed this with Sarva who liked the idea and asked me to enter it into the Tracker.

Add a "reason" to the "report" command:
Usage: report [player name] [reason]

In case it takes a while to implement this, meanwhile at least add to the command description that the reporting player also files a petition because this makes it easier for the Game Masters to check what happened.

Thank you for listening (reading),

Gonger
Bug Report 5880 No Training & Skills Medium Unconfirmed Rezso Gajdoczy Anders Reggestad Skill practice progress updates the wrong skill 2013-02-09 Anders Reggestad 0 0
Preliminary note: Might be related to PS#5642

Symptom
{{s8.postimage.org/n1l1rf7k5/skill_upd_err.jpg}}
The 0th skill is updated in “unsortedSkills” so flush -> then after update results an inconsistent list:
unsortedSkills @Flush:
Swords
Knives & Daggers
....
Heavy Armor
....

unsortedSkills @2nd update:
Heavy Armor
Knives & Daggers
....
Heavy Armor
....

Problem
1: idx is used to get row from unsortedSkills while there is no real connection.
2: Modified row replaces the one in unsortedSkills even if it was (!flush) update and the row is actually derived from it. Plus 1st point

Proposed resolution
Linear search in HandleSkillCategory as I couldn’t find any better way:

@@ -859,7 +859,15 @@
pawsListBoxRow* row = NULL;
if (!flush)
{
- row = unsortedSkills[idx];
+ //If updating progress we have to get the corresponding skill from unsortedSkills first
+ for(size_t i=0;i<unsortedSkills.GetSize();i++)
+ {
+ if (skillName==(dynamic_cast <pawsTextBox*> (unsortedSkills[i]->GetColumn(0)))->GetText())
+ {
+ row = unsortedSkills[i];
+ break;
+ }
+ }
}

if (row == NULL)
@@ -906,10 +914,6 @@
if (flush)
{
unsortedSkills.Push(row);
- }
- else
- {
- unsortedSkills[idx] = row;
}

if (skillName == selectedSkill)
Bug Report 5877 No Crafting Medium Unconfirmed Alexander Leatherworking table works on its own for many types of... 2013-02-14 Daevaorn 7 0
It looks like the table or puncher do all the work, but not the character (like forge do it with ores). For example you can place several rat hides onto it and it will do all the work without any effort from character. Actually it can be exploited to create huge amounts of leather crafts in almost no time. I tried it by myself and have got several ranks in leatherworking for few minutes.

Examples of cases:
Leatherworking:
Scrapping animal hides into hides;
Cutting leather into leather patches;
Cutting leather patches into leather strings;
And similar...
Armor crafting:
Sewing pieces and kits
Punching parts in a puncher
And similar...

The example steps to reproduce:
1. Place Hide scrapper to right hand;
2. Place 16 rat hides to the leatherworking table;
3. Wait till all hides will become small hides.
Bug Report 5876 No Quests Medium Closed Sajut Fogil Tokens of Regard - Stonebreaker and Hammerwielder 2013-02-05 Venalan 1 0
Grimal and Narwin are talking about Stonebreakers and Hammerwielders.

[NPC] -The grizzled Stonebreaker pauses to take a breath.-
...
[NPC] Narwin Molstagh says: It was a long, sweaty journey back to Hydlaa, there being no ale and all, but we made it back and sent a Stonebreaker and a Hammerwielder each to sell off the bits.
Bug Report 5875 No Engine Medium Unconfirmed ido Crash in Red Crystal Den 2013-02-03 ido 0 0
OS: GNU/Linux.
Distro: OpenSUSE.
Graphics Driver: Navida.
OS Architecture: 64 bit.
CPU Architecture: x82 - x64.
Game version: Linux 64 bit.


When I look at the right wall, some item makes my game crash...

Terminal log:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, Sun Feb 3 23:13:58 2013, GUI image 'ButtonStorage' not found.
Sun Feb 3 23:13:58 2013,
Sun Feb 3 23:13:58 2013, Sun Feb 3 23:13:58 2013, GUI image '' not found.
Sun Feb 3 23:13:58 2013,
Sun Feb 3 23:13:58 2013, <src/common/paws/pawstree.cpp:648 Load SEVERE>
Sun Feb 3 23:13:58 2013, <widget> tag not found
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE>
Sun Feb 3 23:13:58 2013, Error in XML: Error document empty.
Sun Feb 3 23:13:58 2013, String was:
Sun Feb 3 23:13:58 2013, <src/common/util/psxmlparser.cpp:311 ParseString SEVERE><">
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.