forums.eqdkp.com: Raid Planer - forums.eqdkp.com

Jump to content

  • (30 Pages) +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Raid Planer

#1 Guest_A.Stranger_*

  • Group: Guests

Posted 16 September 2005 - 04:05 AM

Hi,

i said, i would write a raid signin plugin and here it is the very first and ugly beta version (attached file). This plugin is for the EQDKP version 1.3.0 and ptimized for World of Warcraft.

Edit: added a screenshot of a raid plan of my german wow guild. The plugin uses a random & wildcard system, to help the leaders to assign raid slots.

2nd Edit: if you want to see the raid planer in action, visit the test system at astranger.dnsalias.net/eqdkp.
Admin-Rights: user: RaidPlanerAdmin pw: RaidPlanerAdmin
User-Rights: user: RaidPlanerUser pw: RaidPlanerUser

To use it:
1. extract to "plugins" folder
2. make the changes described below
3. go to "Administration Panel" -> "Manage Plugins" and click install
4. give the nessessary right to the users
5. to plan a raid go to "Administration Panel" -> "Raid Planner" -> "Add"
6. to signin you have to associates some members to the users an click at "Raid Planner" at the menu on the top.

WARNING: this version is early BETA! Use it on your own risk! Backup your files and database before installation.

Changes on original files:

file:
"/eqdkp/admin/index.php"
line:
579-627
old:
... => array('link' => ' ... .php' .$SID

new:
... => array('link' => $eqdkp_root_path . 'admin/' . ' ... .php' .$SID


file:
"eqdkp/templates/default/settings.html"
line:
after 130
new:
<table width="100%" border="0" cellspacing="1" cellpadding="2">
  <tr>
	<th align="center" colspan="2">{L_WILDCARD}</th>
  </tr>
  <tr>
	<td width="40%" class="row2">{L_WILDCARD}</td>
	<td width="60%" class="row1">
   <input type="checkbox" name="wildcard_set" value="Y"{WILDCARD_CHECKED} />
	</td>
  </tr>
</table>
<br />


Screenshot:
Attached File  screenshot.gif (180.18K)
Number of downloads: 12956


Know Bugs:
When you have problems to get the plugin running and you have changed the standard table prefix plz do the following changes:

OPEN
{eqdkp_root}/plugins/raidplan/listraids.php

FIND
$sql_count = "SELECT count(*) FROM eqdkp_raidplan_raid_attendees WHERE attendees_subscribed=1 AND confirmed=0 AND raid_id=" . $row['raid_id'];

REPLACE WITH
$sql_count = "SELECT count(*) FROM " . RP_ATTENDEES_TABLE . " WHERE attendees_subscribed=1 AND confirmed=0 AND raid_id=" . $row['raid_id'];

FIND
$sql_count = "SELECT count(*) FROM eqdkp_raidplan_raid_attendees WHERE attendees_subscribed=1 AND confirmed=1 AND raid_id=" . $row['raid_id'];

REPLACE WITH
$sql_count = "SELECT count(*) FROM " . RP_ATTENDEES_TABLE . " WHERE attendees_subscribed=1 AND confirmed=1 AND raid_id=" . $row['raid_id'];

SAVE AND CLOSE
{eqdkp_root}/plugins/raidplan/listraids.php


If you want to make a donation, look at my Amazon wish list!

Attached File(s)


This post has been edited by A.Stranger: 11 October 2005 - 07:07 AM


#2 User is offline   clayb

  • Member
  • Pip
  • Group: Members
  • Posts: 86
  • Joined: 21-June 05

Posted 16 September 2005 - 10:14 AM

so could you show us screens or a link to your instal?

#3 Guest_A.Stranger_*

  • Group: Guests

Posted 16 September 2005 - 02:02 PM

Hi,

clayb, on Sep 16 2005, 08:14 PM, said:

so could you show us screens or a link to your instal?
View Post

http://astranger.dnsalias.net/eqdkp

#4 Guest_Poken_*

  • Group: Guests

Posted 16 September 2005 - 02:52 PM

A.Stranger, on Sep 16 2005, 05:02 PM, said:

Hi,

clayb, on Sep 16 2005, 08:14 PM, said:

so could you show us screens or a link to your instal?
View Post

http://astranger.dnsalias.net/eqdkp
View Post


I got the addon to install correctly, I can creat raids and see them in the raid planner, but I cannot sign up...I think I did the file:
"/eqdkp/admin/index.php"
line:
579-627
old:
step incorrectly as I got errors when trying to load my page...can you show me what 1 line of code is supposed to look like exactly so I know I'm doing it correctly

#5 Guest_Kalera_*

  • Group: Guests

Posted 16 September 2005 - 07:54 PM

Nice one, but something else here caught my attention :-)

Which site did you use to get german language itemstats ? I actually would love to haven both, english and german, itemstats available.

Thanks.

-Kal

#6 Guest_A.Stranger_*

  • Group: Guests

Posted 17 September 2005 - 05:15 AM

Hi,

Kalera, on Sep 17 2005, 05:54 AM, said:

Which site did you use to get german language itemstats ? I actually would love to haven both, english and german, itemstats available.

blasc.de until wow-handwerk.de implemens the xml function.

#7 Guest_zyphor_*

  • Group: Guests

Post icon  Posted 18 September 2005 - 05:36 AM

Quote

file:
"/eqdkp/admin/index.php"
line:
579-627
old:
... => array('link' => ' ... .php' .$SID

new:
... => array('link' => $eqdkp_root_path . 'admin/' . ' ... .php' .$SID


any chance you can show the whole code one need to change ?

as the stuff shown in the code block doesnt fit with whats in the index page.

#8 Guest_A.Stranger_*

  • Group: Guests

Posted 18 September 2005 - 09:41 AM

Hi,

sorry, have to raid MC at the weekend. :D

zyphor, on Sep 18 2005, 03:36 PM, said:

any chance you can show the whole code one need to change ?

as the stuff shown in the code block doesnt fit with whats in the index page.


old:
1 => array('link' => 'addevent.php' . $SID,   'text' => $user->lang['add'],  'check' => 'a_event_add'),

new:
1 => array('link' => $eqdkp_root_path . 'admin/' . 'addevent.php' . $SID,   'text' => $user->lang['add'],  'check' => 'a_event_add'),


Add "$eqdkp_root_path . 'admin/' . " to the line. Plz send me the url to your side, so i can nook at the error msg.

#9 Guest_zyphor_*

  • Group: Guests

Posted 18 September 2005 - 10:16 AM

well it kinda works now.

tho some links topside disapears after i install the plugin..

and i cant sign on to raid with my other user tho the raid shows and what classes needs etc. but no signin. :unsure:


edit: http://mindwipe.org/~wow/dkp

#10 Guest_Poken_*

  • Group: Guests

Posted 18 September 2005 - 04:18 PM

zyphor, on Sep 18 2005, 01:16 PM, said:

well it kinda works now.

tho some links topside disapears after i install the plugin..

and i cant sign on to raid with my other user tho the raid shows and what classes needs etc. but no signin.  :unsure:


edit: http://mindwipe.org/~wow/dkp
View Post



Same here, I've got it all working now, but there's no way to sign up for the site

http://artfuldeath.n...n/listraids.php

#11 Guest_A.Stranger_*

  • Group: Guests

Posted 18 September 2005 - 09:44 PM

Hi all,

do you have some mebers asigned to the user accounts? Do the users have the rights "list" and "view"? Ist the "subscription date" in the future or in the past?

#12 Guest_Poken_*

  • Group: Guests

Posted 18 September 2005 - 10:33 PM

A.Stranger, on Sep 19 2005, 12:44 AM, said:

Hi all,

do you have some mebers asigned to the user accounts? Do the users have the rights "list" and "view"? Ist the "subscription date" in the future or in the past?
View Post



all my users have the view/list permissions, and I put the subscription a day before the raid..if anything Myself as the admin should be able to see the signup section...but there's nothing there, I can view the raid, but can't signup...there's no signup menu for anybody

#13 Guest_Poken_*

  • Group: Guests

Posted 18 September 2005 - 11:23 PM

Poken, on Sep 19 2005, 01:33 AM, said:

A.Stranger, on Sep 19 2005, 12:44 AM, said:

Hi all,

do you have some mebers asigned to the user accounts? Do the users have the rights "list" and "view"? Ist the "subscription date" in the future or in the past?
View Post



all my users have the view/list permissions, and I put the subscription a day before the raid..if anything Myself as the admin should be able to see the signup section...but there's nothing there, I can view the raid, but can't signup...there's no signup menu for anybody
View Post



also, this is what my sql info looks like, maybe I need to change the names in one of the files so they match since I don't use eqdkp as the folder name for my system

merit_adjustments
merit_auth_options
merit_auth_users
merit_classes
merit_config
merit_events
merit_factions
merit_items
merit_logs
merit_member_ranks
merit_member_user
merit_members
merit_news
merit_plugins
merit_races
merit_raid_attendees
merit_raidplan_raid_attendees
merit_raidplan_raid_classes
merit_raidplan_raids
merit_raidplan_wildcards
merit_raids
merit_sessions
merit_style_config
merit_styles
merit_users

#14 Guest_sonikk_*

  • Group: Guests

Posted 19 September 2005 - 02:55 AM

A.Stranger, on Sep 17 2005, 02:15 PM, said:

Hi,

Kalera, on Sep 17 2005, 05:54 AM, said:

Which site did you use to get german language itemstats ? I actually would love to haven both, english and german, itemstats available.

blasc.de until wow-handwerk.de implemens the xml function.
View Post


sorry for OT, but how can i get xml output from blasc.de?

thanks,
sonikk

#15 Guest_A.Stranger_*

  • Group: Guests

Posted 19 September 2005 - 03:08 AM

Hi,

sonikk, on Sep 19 2005, 12:55 PM, said:

sorry for OT, but how can i get xml output from blasc.de?

blasc.de do not have xml output. If you want to know how i implement the german tooltips for the item stats look at this thread: Mouse Over Items - Zip File

  • (30 Pages) +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users