Difference between revisions of "User:Toy Wylie/Phoenix/Missing Notifications"

From Second Life Wiki
Jump to navigation Jump to search
(added FailedToPlaceObject)
(Added LinkFailed)
Line 96: Line 96:
   </notification>
   </notification>


  <notification
  icon="notifytip.tga"
  name="LinkFailed"
  type="notifytip">
Link failed -- Unable to link any pieces - pieces are too far apart.
  </notification>
  <!-- New message notifications - Toy Wylie -->
  <!-- New message notifications - Toy Wylie -->

Revision as of 07:22, 22 November 2012

Did you encounter strange messages in Phoenix lately? Messages that go like this:

Unknown alert message.png

This means, Phoenix can't display the new messages sent by Linden Lab's servers. This is one sign of Phoenix getting more and more outdated every day.

However, there is a way to at least temporarily fix this particular issue, provided you are familiar and comfortable with editing XML files. Copy and paste the definitions below to the end of your notifications.xml (right before the final </notifications> tag), and you will at least not see the most common errors anymore. I will update the code snippet with more messages as I encounter them. And please, if you see new ones like this, send me the alert identifier, so I can try and add it to this list.

The path to the file is:

  • skins/default/xui/en-us/notifications.xml
 <notification
  icon="notifytip.tga"
  name="AutopilotCanceled"
  type="notifytip">
Autopilot canceled.
 </notification>

 <notification
  icon="notifytip.tga"
  name="JoinGroupSuccess"
  type="notifytip">
You have been added to the group.
 </notification>

 <notification
  icon="notifytip.tga"
  name="GroupDepart"
  type="notifytip">
You have left the group '[GROUP]'.
 </notification>

 <notification
  icon="notifytip.tga"
  name="toxicInvRezAttemptFailed"
  type="notifytip">
Attempt to rez an objet failed.
 </notification>

 <notification
  icon="notifytip.tga"
  name="HomePositionSet"
  type="notifytip">
Home position set.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoRoom"
  type="notifytip">
No room to sit here, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoSuitableSurface"
  type="notifytip">
There is no suitable surface to sit on, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoSetRootPrimWithNoShape"
  type="notifytip">
Cannot set root prim to have no shape.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoPermsNoRemoval"
  type="notifytip">
Removal of the object '[OBJ_NAME]' from the simulator is disallowed by the permissions system.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantRezOnLand"
  type="notifytip">
Can't rez object at [OBJECT_POS] because the owner of this land does not allow it.  Use the land tool to see land ownership.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoCopyPermsNoObject"
  type="notifytip">
Copy failed because you lack permission to copy the object '[OBJ_NAME]'.
 </notification>

 <notification
  icon="notifytip.tga"
  name="FailedToPlaceObject"
  type="notifytip">
Failed to place object at specified location.  Please try again.
 </notification>
 <notification
  icon="notifytip.tga"
  name="LinkFailed"
  type="notifytip">
Link failed -- Unable to link any pieces - pieces are too far apart.
 </notification>