Not going to bother researching the threads.
Something where you can filter out events of everyone but a certain someone.
Say you want to view events of just a certain person, you type the name in some kind of box and a list of events shows up for that one character, as long as you were around to see this character perform an action.
Focus
Moderators: Public Relations Department, Players Department, Programming Department, Game Mechanics (RD)
- Bran-Muffin
- Posts: 2014
- Joined: Mon Feb 09, 2004 5:51 pm
- Location: California
- chase02
- Posts: 2032
- Joined: Fri Nov 07, 2008 1:13 pm
- Contact:
Probably quite easily doable in CSS/javascript alone, so wouldn't require so much work from ProgD, just restructuring the events log output.. wrap each event inside the <td> in <span> then add a charID to each span (<span>).. add a combo box somewhere with local character names, if a name is selected, run some javascript, passing the charID: 'targetChar(id)'..
(obligatory warning, following completely untested, not sure if this will work..)
Add a filter by "None" value in the combo box, if this is selected, just run the inverse of the above first command..
(obligatory warning, following completely untested, not sure if this will work..)
Code: Select all
<script>
function targetChar(id) {
document.getElementById('#eventslist span').style.display = 'none';
document.getElementById('#eventslist.123456').style.visibility = 'visible';
}
</script>
Add a filter by "None" value in the combo box, if this is selected, just run the inverse of the above first command..
-
- Posts: 1402
- Joined: Sun Oct 02, 2005 8:53 pm
- Location: Southampton, England
- Contact:
- Bran-Muffin
- Posts: 2014
- Joined: Mon Feb 09, 2004 5:51 pm
- Location: California
- Doug R.
- Posts: 14857
- Joined: Wed Mar 23, 2005 6:56 pm
- Contact:
-
- Posts: 667
- Joined: Sun Dec 23, 2007 8:25 am
- Location: Yugoslavia
-
- Posts: 407
- Joined: Mon Aug 10, 2009 8:39 pm
- chase02
- Posts: 2032
- Joined: Fri Nov 07, 2008 1:13 pm
- Contact:
- Doug R.
- Posts: 14857
- Joined: Wed Mar 23, 2005 6:56 pm
- Contact:
Return to “Rejected Suggestions”
Who is online
Users browsing this forum: No registered users and 1 guest