PlaneShift

Task TypeIDPrivate  descCategorySeverityStatusOpened byAssigned ToSummaryLast Edited[[changedby]]
Feature Request4712NoItems CharacteristicsMediumNewliluraTaladBookshelves like in the Library for Guild houses05.09.201065 Task Description

It would be cool if players could buy bookshelves like the ones in the library. Rather than the player trying to set all the book items on the bookshelf that can be bought in Winch right now and making it look as if the books are on the shelf in the proper way the same dwarf could sell the shelves that look like the ones in the library. It would hold books like a container.

Feature Request4727NoNPCMediumNewRlyDontKnowRentable mounts12.09.20103 Task Description

FR by Vakachehk:

I have an idea for mounts which will need some changes to some maps.
For Rivnaks (maybe Drifters too) having stables in which without a ring you may summon them, and dismiss them, without any skill of any ring needed, maybe a tria fee of like 50trias every summon/dismiss (of course there's the obvious issue you un-mount and leave your Rivnak somewhere, either the game automatically dismisses it or it is able to be stolen via a player, or a mechanical guard comes and takes it back to the stable or whatever). Using your Ring of Summon Familiar you can use the skill Empathy to dismiss/summon/etc, anywhere at any time.
Also I was thinking about the skill 'Riding' maybe this could be trainable and used in combat while on your rivnak?

Bug Report4735NoSettingMediumNewweltallnpc with -01.10.20102 Task Description

The engine code was clearly coded to not allow - so till a different decision is taken these npc are all bugged and should have the - stripped

Brintec Dev-Onni
Vladovic Chel-Astra
Sharven Xant-Areth
Uri Djho-Maat

thanks to Vakachehk for the list

Feature Request4789NoUser InterfaceMediumNewFrederik Elwertaction locations have no labels and are not selectable16.10.20103 Task Description

The grill in Reffitia's kitchen in Brado's tavern doesn't behave like other items in the kitchen: The preparation table, for example, is selectable and has a label. The grill is not selectable, and it has no label. One can interact with the grill (e.g., store something in it) just as with the preparation table by right-clicking it. But the grill is much harder to identify, since it has no label.

Feature Request4797NoEngineMediumNewmike loevena play dead command or /playdead21.05.201164 Task Description

just a idea for a simple rp command. entering /playdead will play the death animation and leave your character imobile similar to the sit command but you will be lying down instead. this can be usefull in roleplay where you are injured but not actually dead or if you want to role play your character going to sleep. entering /stand will cancel both /sit and /playdead. in later versions of the game perhaps this can be also be used to fool the less intelligant monsters like ulbernauts rats and some of the bugs into giving up the chase and loosing interest. i think it would be benificial to have a way to roleplay being wounded or dead without having to actually go to the death realm. say for example your character was killed in a roleplay setting you could use playdead to have a open casket funeral complete with a body that will not dissapear after a minute or two.

i am not sure how easy this would be to acomplish but i suspect you could duplicate the existing sit command and just change the animation called

Feature Request4799NoInventory/ItemsMediumNewmike loevenadd storage access inside guild halls01.01.201311 Task Description

seeing that furnature is one of the heavest item types in the game, redecorating guild halls can become tedious and god forbid things get cluttered it is not possible to eaisly move them to storage. my request is that typing /storage will work inside a guild hall as if you were targeting a storage npc. just for convienance sake.

Bug Report4809NoEngineMediumUnconfirmedmike loevencannot defend yourself if another player engages the mo...01.01.20131 Task Description

i ran into a bug that nearly got me killed today. i was fighting gobbles and i ran low on health and had to run away. as i was running another player cast flame burst on the gobble chasing me.

the gobble chasing me did not stop chasing me but i was no longer able to attack it because it said i must be grouped with X mean while the gobble was still damaging me.

this can be fixed one of 2 ways. the targeted player always has kill rights on the monster or the monster changes it’s target when a new playr engages it.

but as it stands it is rather scary when your being attacked and cannot defend yourself due to a bug in the kill stealing prevention system.

Bug Report4931NoInventory/ItemsMediumNewJorickClicking 'use' on brado's grills interrupts grilling m...23.07.201271 Task Description

When I try to select a grill in Brado’s tavern the pink rotating cross does not appear.
Right click works and brings up the action icons. However, putting meat in one of the slots and “use” the grill to grill the meat results in “You interrupted your work when you moved away” every time. Other items like preparation tables, pots, etc. work fine.

I’m running PS on:
Arch linux ( up to date system ) 86×64 intel core i5
mobility radeon HD5xxx series with up to date catalyst drivers.

I logged my console output but I can’t see anything relevant to the problem, could be me so here’s the link:
pastie

Bug Report4937NoCombatMediumNewDanielMovement for Ranged not showing when firing long distan...04.04.20164 Task Description

When the monster is somewhat near you, the movement simulating firing an arrow with the bow is showing. However if the monster is quite far away the movement stops showing until either one of you gets closer to the other.

Feature Request5191NoModels and MapsMediumNewVikenMore sewers would be nice...21.05.20113 Task Description

I really like the sewers in Hydlaa, and I think it’d be cool if the other cities (Ojaveda and Amdeneir, mainly) had something like that. I also think it’d be cool if the Hydlaa sewers had a couple more openings, and maybe some intentional service entrances instead of just cave-ins with ladders… And maybe an entrance/exit in the East? Then my Rogue-like character could travel by sewers more, which would be totally awesome.

Are you guys planning to add some more sewers eventually?

Bug Report5204NoBugtrackerMediumUnconfirmedShinobu MaeharaWhen receiving a bugtracker account, a non-existing ver...02.12.20211 Task Description

When I received the account confirmation message in my inbox, and then clicked on the link, it asked for a verification code.
But there was no textbox to enter the code, and it wasn’t in the message sent. Fortunately the login turned out to work just the same - all mention of verification codes should be scrapped.

Bug Report5213NoCharacter CreationMediumNewRalph Campbelldon't hardcode race to set gender in pawscharcreatemain...16.05.20112 Task Description

Index: src/client/gui/pawscharcreatemain.cpp

— src/client/gui/pawscharcreatemain.cpp (revision 7252)
+++ src/client/gui/pawscharcreatemain.cpp (working copy)
@@ -1012,10 +1012,9 @@

   view->Show();
   view->EnableMouseControl(true);


- //temporary hardcoding needs removal
- maleButton→SetEnabled(id != 9);
- femaleButton→SetEnabled(id != 9);
- if(id==9)
+ maleButton→SetEnabled(currentGender != PSCHARACTER_GENDER_NONE);
+ femaleButton→SetEnabled(currentGender != PSCHARACTER_GENDER_NONE);
+ if (currentGender == PSCHARACTER_GENDER_NONE)

   {
       maleButton->SetState(false);
       femaleButton->SetState(false);
Feature Request5216NoNPCMediumUnconfirmedmickraVisual indication of available quests20.05.20112 Task Description

When a player character is within the interaction range of an NPC, a mark (label) of some sort should appear above that NPC if they are offering some new or repeatable quests (! not some information for those already running !) for that particular character at that particular moment.

Should be optional as a turn-off or turn-on, depending on the default chosen by designers. In any case, and as with any other label, players should retain the option of not seeing it, if it spoils their fun or ruins their immersion somehow.

The reason for this request: drastically increased amount of questing chains ingame, and the absolutely unhealthy and immersion-breaking amount of mouse-clicking on the same NPCs the game now requires.

Noticing a sign above someone's head is OOC, of course, but clicking a mouse button on someone's model, or getting an aggressive red "…has no quest information for you" line floating in mid-air is equally OOC'ish.
On the other hand, seeing no mark above someone's head would cause neither irritation nor disappointment (while futile mouse-targeting and mouse-clicking, when done repeatedly, invariably produces both of those negative effects).
The marks would also provoke reasonable curiousity about available quests, hopefully enticing new players into doing more of them.

I know this request is somewhat of a long shot, but assuming that the engine is going to be considerably revisited this summer, I decided to submit it anyway.

[Edited for clarity, and also to separate it more from PS#4798. That older one would 'make the game easier' indeed, while what I suggest would only eliminate excessive mouse actions.]

Feature Request5221NoEngineMediumAssignedVikenVenalanMaking Metal Stock in Ojaveda18.09.20141 Task Description

I just did this quest, and it turned out to basically be “Give Trasok 100 tria so he can explain what you should already know if you have the book.” It has no reward other than a few Crafting Association points, which is pretty much worthless. Could you guys either remove this quest or make it give some real rewards? Thanks…

Feature Request5230NoEngineMediumUnconfirmednobody specialchange to default action upon mob attack or player cast...19.05.201131 Task Description

I would like it if you could set the default reaction to casting a spell or being attacked. I find it quite annoying to automatically be set to fully defensive when I cast a spell. I also find it annoying that when being attacked by a group of mobs your target focus jumps to whichever one hit you last.

When I cast electrotouch I want to hit my opponent and not change my stance. generally whenever I cast anything in melee I want to keep my previous stance.
When I am in a pile I want to kill what I am fighting before I start on another one. If I want to fight a different one I can so choose manually. It is also annoying that you often jump to a different mob before you are able to loot what you have just killed.

It would be great if there was a section to set these in the options.

In the case of electrotouch I tried to add /attack normal to my shortcut but it was processed and discarded before the spell finished casting. I appreciate you probably don’t want long chains of commands to be processed in turn as it could lead to botting, otherwise I would ask for one command to finish processing before the next is considered. Still it would be nice to repair all my armor with one keypress instead of 5.

Bug Report5242NoCraftingMediumNewnobody specialblade can be removed from hand without disturbing work24.05.20112 Task Description

If you take a heated blade out of your hand while hammering it the work will not be interrupted until the work duration if finished. If you return it to your hand before the work is finished the transformation completes successfully.
THis appears to only work if you replace the item with itself, substituting a different identical item or a completely different item causes an interruption.

Feature Request5248NoNPCMediumPostponedMario RohkrämerKormi not yet used: How about a "shy herd" tribe?22.07.201332 Task Description

When the GSoC was successful enhancing the tribe code, it could be interesting to create one or two of Kormi which try to avoid approaching players but stay together.

That may require organising a witch hunt / drive hunt as strategy, which may support grouped activities.

Feature Request5255NoCraftingMediumUnconfirmednobody specialpersistent selector for pick up amounts20.06.202161 Task Description

I would find it extremely useful if I could select from 1, 5 and 10 amount when shift clicking a stack of raw materials. This would allow me to improve the efficiency of smelting by picking enough material to cast into stocks of the various types. I could then dump a stack of molten ore into the caster and shift click it to spread out the ores into castable portions. obviously the 5 and 10 amounts are for casting stocks from precious and non precious materials.

It would be useful for this to only apply to molten ores in the furnace as there is no need for ingot/stock to be smelted in these particular numbers.
It might be also useful in a forge or other crafting container to have the ability to set to an arbitrary amount when processing ingots or stock for weapon/shield/armor parts.

Perhaps instead of overloading the shift click in this way using the alt click instead would work but this might cause a problem for Apple type computers.

Changed task description to clarify request.

Feature Request5259NoCraftingMediumUnconfirmednobody specialMake Crafting more like combat03.07.201111 Task Description

I would like it very much if crafting were to be redesigned more like combat. Instead of one action that takes many seconds to complete and generates only one practice or experience reward make it so that each hammer blow is considered and eligible for a reward. For example at level 10 it takes me about two minutes to turn 12 heated ore into 4 shield handles and I get one practice point and some experience at the end of that time. Under my proposed change it might take just as long but each hammer blow on the ingots would receive a success chance roll that would increment the percentage done. A series of low rolls would result in a failure, either junk metal or very low quality handles and a series of high rolls would result in faster time and/or higher quality handles. This would be analogous to hitting a mob until one of you is dead.

I believe this would be more fair in the long run and if it would seem to make great quality items too available the chance to succeed could be reduced.

Bug Report5271NoMovementMediumUnconfirmedVakachehkAmdeneir Tavern bed's Canopy too low to use09.07.20111 Task Description

The bed’s canopys in Amdeneir tavern are too low for anyone/race to use the beds.

dl.dropbox.comu25106032shot93.jpg Picture depicting Vakachehk being to tall to get under the bed canopy

You might be able to use them if we could some how have a lying down command and be able to scoot over. Or right click the bed and click ‘Use’ and our character’s automatically lay on the beds. However they’re unusable at the moment.

Feature Request5286NoInventory/ItemsMediumUnconfirmedGregPile of quest items Of Unknown Importance23.06.20111 Task Description

Not sure if this was adressed but I have a pile of quest items, that after the whipe Of quests Im not sure what I need to keep for Quest trees, or what I can get rid of. Trying to clean out my inventory/Quest items.

I Haven’t really tried to find a spoiler site that lists quest items and what they are for, or even if one exists

Bug Report5289NoCombatMediumUnconfirmedGregDavide VescoviniYou Must Face Enemy To Attack/You Are To Far Away To at...24.06.20114 Task Description

Not sure if it is just me but I keep getting “You Must Face Enemy To Attack” when im clearly faceing them >

  There are A few Angles At which this happens (Most noticable on a Armored Riverling's right shoulder near the Lake Of Tears, Has also happened on the consumors near the Face Of Stone) 

“You Are To Far Away To Attack” > (standing right next to them, If I time it right I can jump and hit it’s head, but only can hit when jumping)

   I have noticed this On Ojaveda Road 1 Maulbernauts/Vilenaut/Maulberloards (When they spawn in the "vally area of there spawn points") I also notice when I kill them They get suspended Laying down in the air
Feature Request5293NoMiscMediumUnconfirmedGregAn Auto-Guard system of some sort28.12.201453 Task Description

I would like to see an Auto Guard system of some sort

I recently Made a mini game on PS and went to a GM event to have things Engraved but im running into A problem that if I somehow lose connection I would be subject to an OCC Robery of these items, And they are food Items So someone could pick them up, Eat them, And log off. While im still trying to log back in. weather it be from an enemy or A fake Alt.

Not only that but I placed a book on the buildboard to look for a guard to help me guard the display, a couple hours later it was gone. A player shouldn’t have to ask a GM everytime they want to place a book…. Ask Any GM and im sure they will agree with that!

ICly I could put a spell on something or report it to the guards, but these might have little effect other then a sure solution.

I will list some solutions, umm… Tell Me what you think? :)

1. Create A spell For Players To Lockdown there own Items/Command (time period Has no meaning Do to Bad weather that lasts hours)

2. Lol I donno… Number 1 sounds like the only solution Or all the others tye into it. I’ll Try to think of more and post them in comments

The next day I hear people in Gossip channel talking about someone taking a book so Its effecting All players

Feature Request5300NoQuestsMediumUnconfirmedAndrew DraskoySuggestion for NPC default conversation when quests not...29.08.20111 Task Description

Currently when an NPC doesn't have a quest for player, they essentially ignore the player. This can be bad because:

1) Sometimes (e.g. the circle way quests) this comes across as a bug since the player has been directed to talk to the NPC by another.

2) It's not always (in fact generally not) a realistic behaviour from a charactization PoV.

3) The chain quests are now very long and not obvious, so players have no idea what to do next.

4) It may be something else besides more quests that is necessary. How are players to know?

I think this should be changed, and propose the following dynamic as a possibility:

A "sociability" metric would be calculated for each interaction between player and NPC based on:
factions, prerequisites required for quests, and a base number assigned to each NPC. This metric will indicate how well-disposed the NPC is towards giving quest info the player at this time. Depending on this metric (lets say a number from 0-5) the NPC could say something (or ignore the player if the number is 0). The higher the number, the more useful and specific is the response.

Some characters are grumpy by nature and will almost always ignore people or give gruff responses (like now). Many are just typical and will offer canned default responses, expect that for the higher metrics these will hint that they will have something for you later. Ideally the highest metric will look up who gives the pre-requisite quest and direct you there.

Each quest could specify overrides for any of the responses.

Feature Request5303NoGUIMediumUnconfirmedSlissAbility to add additional info to buddy list02.04.201331 Task Description

I would like to be able to maintain my buddy list a bit better by adding extra info.

I use the list as many to also locate enemies. But the list gets longer and longer so I would like to add additional info to it. Like the guild when met etc.

Bug Report5316NoCrashesMediumUnconfirmedslyclient is crashing04.04.20133 Task Description

My client is crashing when my char sees a Magic Wand user. I’m on a Mac. I suppose its caused by those new Master Wands. This is very nasty…

Bug Report5324NoEngineMediumUnconfirmedR.GuppyOutside guildhouse door icons missing27.07.20111 Task Description

Both guildhouses Call of Destiny and The Jumping Groffels, show no door icons from outside.

Feature Request5325NoInventory/ItemsMediumUnconfirmedEnio ArdaBuyback option for last sold item(s) to NPC15.07.201124 Task Description

I would like to have the option to buy back item(s) i sold to a npc as precaution for accidental sales.
Its a common feature in other games and would fit PS very well too.

Questions for implementation:
- Should the list be global or npc specific? (buyback only where you sold it)
I tend to make it npc specific as it makes sense and would prevent abuse (e.g. for transportation).

- Add a timer how long the buyback of a sold item is aviable? Its probably easier to add and lighter on ressources to keep a fixed global item amount then adding a timer.

- How many items should be stored to be aviable to buy back? In my opinion a global maximum of 10.

- Should there be an additional fee for buying an already sold item back? I’d say it would make sense. The NPC-buy price of the particular item could be used, since the calculation is already implemented.

- How does it fit into the UI? It could be added in the BUY-from-npc list of the particular NPC. It would only show up when there is something aviable to buy back, similar to how the SELL-to-npc list handles it now.

Any thoughts or ideas?

Bug Report5331NoEngineMediumUnconfirmedR.GuppyArt glitch sewers19.04.201421 Task Description

Hard to spot, but if you go to the location and zoom in and out, and rotate it shows, also as second screenshot shows it also extends to left.

http://imageshack.us/f/16/shot16.jpg/
>Your current position is region: hysewers 11.73 -5.95 -166.09 0 angle: 247 (4.319690), sector : swr-darkgreen02

http://imageshack.us/f/220/shot17.jpg/ (10:19:08) >Your current position is region: hysewers 3.56 -5.70 -162.07 0 angle: 257 (4.491496), sector : swr-darkgreen02

Bug Report5359NoRendering IssuesMediumNewPhenha PhayethorKlyros colour change13.11.20112 Task Description

I play a Grey Klyros male and after I got my robes I noticed that if I put them on and took them back off, my arms became blue.
This is an easy bug to recreate, all it requires is a grey klyros and a robe.

Feature Request5377NoQuestsMediumUnconfirmedFoxieIn Aid of the Kran quest too short26.08.2011 Task Description

I must say that this quest is quite disappointing. After a promising and very good beginning the whole story is cut short in an odd way. I think the plot would deserve some development as the beginning is really good.

Bug Report5380NoEngineMediumUnconfirmedAndrew DraskoyNothing to be looted message grammar29.08.2011 Task Description

The message presented when looting a dead NPC with nothing to loot is “… has nothing to be looted”.
While this is valid English, it is more natural to say “… has nothing to loot”.

Bug Report5386NoCombatMediumNewKaerli StronwylleRange of combat messages is FAR too short08.07.20162 Task Description

You can easily shoot with a bow ingame to ranges far beyond the range of combat messages. Mob aggro (and sometimes the archery anim) do not work at such long ranges, either.

Bug Report5389NoEngineMediumUnconfirmedKostas MichailidisLocked inside.25.09.20115 Task Description

I can only quit the Hydlaa’s Museum when I quit and log in again.The first time I try 90% of everything located inside the museum vanishes.The following message pops up every time I try to quit:You are not in the range to do this.

Bug Report5391NoInventory/ItemsMediumUnconfirmedVakachehkTrading while over encumbered 28.09.2011 Task Description

It’s stupid to not be able to trade (through right clicking the character and clicking ‘trade’) while over encumbered (having to sit down because you’re too heavy). But yet you can just make a shortcut or type /trade and it works.

So my point is, why?

(note: if this task has already been posted and discussed, I did search ‘Trade’ and ‘Trading’)

Bug Report5392NoEngineMediumUnconfirmedAlex MatthewsNo armor29.09.2011 Task Description

The leaver leg armor and appentice robes on Enkidukai clamod isn’t working. this might be the same for all enkidukai’s.

Feature Request5425NoEngineMediumUnconfirmedZeonixa AlruvisFPS is too high. Improve the graphics.18.11.20112 Task Description

I have a 6950, running the game at absolute max(custom) settings(minus fullscreen, it crashes), and the framerate is ~130fps(see corner, I had limiter on). I think the game has room for some graphics bumps on the “highest” settings. It would also be a good idea to future proof this game. The 6990 is about twice as good as mine or so, and who knows what year 2014 will have in store? At max settings, I think it should run on the fastest graphics card at about ~12-24 fps.

http://img411.imageshack.us/img411/5356/screenshot10dl.png http://img839.imageshack.us/img839/3158/screenshot9rm.png

Now I know some people will be like: “How much did you spend on that computer?” and the answer is: $950.
So yes, normal people could use better graphics. I’m not some crazy uber geek with a $6000 computer(just a normal geek).

Possible additions:
Bump mapping. Cheap way to make things appear more 3d.
Super AA (draw at double resolution, scale down, future proof)
Voxel models/textures.
Another lightmap model: make a second screen, this one is an additive screen, each object reflects light to the second drawing board according to the laws of color (additive, then multiply) so for example, a candle would be yellow on the emitter lightmap, but a chair pitch black. Then after being lit by the candle you preform additive to the chair’s lightmap, and multiply it by the texture of the chair. A third map could be added for reflectivity, but I don’t know if that would be easy since I don’t program graphics.
Better textures.

Feature Request5433NoUser InterfaceMediumUnconfirmedMario RohkrämerNeed a filename prompt when saving a book17.11.201112 Task Description

A book is saved on the local disk with the custom title entered while writing its content. This is very inconvenient if the book has a quite verbose title, then the filename is just as verbose, and if you want to load this text into a copy of this book, you need to type exactly the same book title into the loading filename dialog. Or you need to know where books are located outside the game and rename the saved file there.

I'd like to be able to specify a brief filename to save a book to. The filename dialog may be pre-filled with the suggested filename based on the book title, but I'd like to change it before saving, if desired.

Bug Report5439NoCharacter CreationMediumNewMario RohkrämerRace selection: Collection of issues found in systemati...15.10.20213 Task Description

There are several issues I experienced during testing the Character Creation / Race Selection:

  • Hair style is hard to check if manual rotation is necessary during zoomed view.
  • Male Ylian: blonde/brown are confusing names for face textures, they should possibly be changed to emotions. Blonde 1 and Blonde 2 appear identical.
  • Male Dermorian: Face style “Forehead tatoo …” is too long to be readable completely
  • Female Dermorian: “Medium” style is shorter than “Short” style
  • Stonehammer: Race description still mentions “Stonebreaker”. Many descriptions may need an update after the race renovation.
  • Male Stonebreaker (and others): Hair and Beard styles may need a more descriptive name.
  • Female Stonehammer: Traits seem to be misordered. If “Braids” are the two long upper tails, and “Rivnak tail” should probably be the one long tail, then “Lavvar tail” should instead be the two small low tails? What is a Lavvar, anyway?
  • Kran: I’d prefer visually disabling both male and female gender buttons. Leaving the female activated might be confusing.
  • Female Ynnwn: Face style “White eyes” doesn’t use white eyes. The name should possibly be changed, e.g. “Aged” (in contrast to “Young”).
Feature Request5474NoUser InterfaceMediumNewEliyahnaAndrea RizziUndo Button for Music Writer20.12.201112 Task Description

An "Undo" button on the new music writer that could go back at least one step would be very helpful. Thanks!!

Feature Request5477NoGUIMediumUnconfirmedchrisGui improvements/inconsistencies20.12.20115 Task Description

Currently the GUI is one major flaw of Planeshift in my opinion, it makes it look worse than it deserves. A few examples:

  • Just try to play the tutorial on a 15 inch laptop (1366×768). As soon as you need to open up the inventory most of the screen is covered, you can’t even close the window because the top right cross is out of screen. I needed multiple tries to find a spot on that window to be able to drag it down and close it finaly.
  • We now have channels. But the new basic chat gui hides it by default. New Players with a new installed client don’t see it. A lost chance to show them there are people online actually.
  • The possibility to reduce the amount of tabs in the chat window is great but is also a pain in the a.. if every new guildmember needs to be guided through the processs of enabling the guildchat, even a restart is needed. Why not make this tab pop up if someone is in a guild…if the guild joins an alliance make this tab pop up. If not these two are hidden by default?
  • Playing this game now for around 5 years I think and at least I have the impression we get with every single release new commands to be used in shortcuts. Thats great, for advanced players…for new ones it is confusing. IMHO its time to take a breath and review them, sort them in order of importance and decide which should be used in the gui and how. Can’t remember how often I heard the question: “How do you mine ores”. A ‘logical’ way could be that you rightclick your character and get it as option (well now there is “introduce yourself”, does it do something?) when the rockpick is equipped, is the fishing rod equipped you fish as option. Also summoning your pet and mount is only possible via commands. The described way could make these also more accessible. (There are also illogical flaws, if mounted you can unmount after rightclick, but you don’t get the mount option when righclick on your mount)
  • Think about if some can be combined into one command. We ‘use’ the riveter, anvil etc. Why do we /dig or /fish and not /use the rockpick or fishing rod. I can only think thats a leftover from when we had to /dig iron etc explicit.

Enough for now, hope you guys have enough time to think about it.

Feature Request5485NoInventory/ItemsMediumUnconfirmedFiribanMake a hat item where you can throw money in26.12.20112 Task Description

it would be nice for bards if they had hats where passers-by could throw some tria in. The hat item would serve as a money container as well as a piece of clothing. The advantages to just throwing tria on the ground are that people can’t just steal the money and it would look nicer.

Feature Request5486NoEngineMediumUnconfirmedEdichoImplement data compression28.12.2011 Task Description

Client recieves plain text data regarding many things configuration:

<traits><trait id=”10” next=”0” loc=”FACE” mesh=”308” mat=”321” tex=”322” shader=”“/><trait id=”346” next=”0” loc=”HAIR_STYLE” mesh=”328” mat=”0” tex=”0” shader=”0.63,0.32,0.17”/><trait id=”382” next=”0” loc=”HAIR_COLOR” mesh=”0” mat=”0” tex=”0” shader=”0.52,0.45,0.17”/></traits>

It would be better to handle the data this way:
compressed server side
stored compressed
sent compressed
client recieves compressed
client decompresses uses and stores on disk.

compared:
plain text - 1,1k
tar.gz - 0,4-0,5k

Bug Report5524NoEngineMediumNewGregCouple Of Small problems to be corrected? Knollege Req...12.06.20122 Task Description

I have noticed a few things that are Incorrect, not sure If anyone commented on them, Or If they are In Progress. I will jot them down all in one Report so not to make several reports…

1. The “Cone” On the Energy Arrow Is faced in one direction As in the visual effect right after the energy arrow hits the target (Im sure im not the only one who see’s this wrong?)
2. When Dropping Stacks Of Items Like Pants There is an extra “ES” at the end. Alot Of Items Have The Extra “ES” at the end, that should not be there.

I Had A couple Questions and Requests :)
1. Someway to Turn off the red dropping notifications like.>”You are to far away to attack” and ““**” Has nothing to be looted”. maybe a way to just have it in the system tab.(Asked in help tab, unknown, If someone knows how please tell me lol, thanks!)
2. An NPC Or something In Game That could tell you detailed Information about weapons/quest items and things of that nature, (I have seen the Book in the musium, but I haven’t really studied it yet, and maybe incomplete?)

  It would be really cool if you could go to an npc and hand them what you found, have them give you 2 lines about the sword and what it does. Or even a book from a quest where you can i.d it, have it unidentified untill you take it to an npc and pay them a really small fee to i.d it. (Not complaining at all but I have kept all of my named items I have looted since I have started playing. they are awsome! :D But I want to organize :) please? :D I want to sell them but I dont want to sell something for 10,000 and find out that it was really special. haha with my Inventory im sure I could write the book!

If you want to comment on this aswell, up to you. I will be blunt to the point:
I have seen leather working Implimented But Famiel Is the one and only charature I will have. But He is Forbidden to work with Furs/Hides other then looting for sale. he wants to start making his own armor, so I ask/Hope there is a way to bypass leather armor and make Medium/Heavy Arms/Boots/Gloves when it gets implimented
Thank You For Your Time :)

Bug Report5535NoEngineMediumUnconfirmedJeremy Listcannot unguard items in dropped containers05.02.20121 Task Description

to replicate: find a container object somewhere (such as one of the wooden crates near Harnquist’s). Put an item in the crate, and try to unguard it. There doesn’t seem to be any way of doing this, or of unguarding an item before placing it.

Feature Request5551NoWebtoolsMediumUnconfirmedFrantaVersion info in server status page28.02.20122 Task Description

Could it be possible to add server version info (and possibly aso recommended/required minimal client version) to the server status page, i.e. to http://planeshift.zeroping.it/index.php?page=about_page for zeroping server? It could help to determine easily whether the update is required/recommended without need to start pslaunch when you don't use it to load the client.

Bug Report5566NoEngineMediumUnconfirmedAiwendilThe treeview of paws is bugged.13.04.2012 Task Description

It happens for me always again after “opening” and closing nodes. Sorry, haven’t found a way yet to reproduce it every time. Might add some more information here once I find out more ;)

It dispalys the newly opened node above a previously already opened one.

Bug Report5570NoSoundMediumNewMario RohkrämerMusic scores play at 1/4 of the previous speed now13.06.201231 Task Description

The measurement of note durations is completely wrong. “Beats Per Minute” are no more what they used to be.

Bug Report5574NoEngineMediumUnconfirmedKaerli StronwylleClient-side email validation in registration system rej...15.04.2012 Task Description

GMail uses the + to denote email aliases: foo+bar@gmail.com delivers to the same GMail inbox as foo@gmail.com. The PS validation system rejects the + character client side, although it is permitted by the RFCs (see RFC5322 s3.2.3/3.4.1). The easy fix is to be much more liberal on the client about what is allowed in an email address, since we’ll be emailing a validation code to it anyway.

Bug Report5577NoMap TexturesMediumUnconfirmedTimilTextures Missing in Towns, and Shader Issues16.04.201221 Task Description

Since the update to 5.9, the textures and shaders when in town seem to be either missing or messed up. The lighting in some areas makes Chars and NPCs look like they’re wearing TV static. I’ve checked the drivers for my graphics card (ATI Radeon 3100 in a Toshiba Satellite Laptop), and they are up to date. Please see the attached screenshots, and if any more info is required, I will be happy to provide.

Thank you for your time and attention. ~Timil~

Showing tasks 51 - 100 of 650 Page 2 of 13 - 1 - 2 - 3 - 4 - 5 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing