forums.eqdkp.com: Guild Flag & EQDKP - forums.eqdkp.com

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Guild Flag & EQDKP 2.3.1 for EQDKP 1.3.2

#1 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 20 July 2007 - 04:23 AM

Hi,

I just like to add here the guild flag Version 2.3.1 its basically a fix, based on version eqdkp-1.2.1EQ2GF and compatible to eqdkp 1.3.2.

Click here! Time Stamp: 09 August 00:25

Based on your configuration may you have to chance just something within the flags_plugin_class.php! If you can't reached the Guild Flags - Add, List, Edit Member within admin panel.

$admin_menu = array(
                'flags' => array(
                    0 => $user->lang['flags'],
                    1 => array('link' => $eqdkp_root_path . 'plugins/' . $this->get_data('path') . '/addflag.php' . $SID,
                               'text' => $user->lang['add'], 'check' => 'a_flags_add'),
                    2 => array('link' => $eqdkp_root_path . 'plugins/' . $this->get_data('path') . '/listflags.php' . $SID,
                               'text' => $user->lang['list'], 'check' => 'a_flags_edit' ),
                    3 => array('link' => $eqdkp_root_path . 'plugins/' . $this->get_data('path') . '/listmembersflags.php' . $SID,
                               'text' => $user->lang['edit_member_flags'], 'check' => 'a_flags_edit' )
                )
            );
                                                                                
            return $admin_menu;


change it to (root= eqdkp):

$admin_menu = array(
                'flags' => array(
                    0 => $user->lang['flags'],
                    1 => array('link' => $eqdkp_root_path . 'eqdkp/plugins/' . $this->get_data('path') . '/addflag.php' . $SID,
                               'text' => $user->lang['add'], 'check' => 'a_flags_add'),
                    2 => array('link' => $eqdkp_root_path . 'eqdkp/plugins/' . $this->get_data('path') . '/listflags.php' . $SID,
                               'text' => $user->lang['list'], 'check' => 'a_flags_edit' ),
                    3 => array('link' => $eqdkp_root_path . 'eqdkp/plugins/' . $this->get_data('path') . '/listmembersflags.php' . $SID,
                               'text' => $user->lang['edit_member_flags'], 'check' => 'a_flags_edit' )
                )
            );
                                                                                
            return $admin_menu;


Take care have fun!

Regards

#2 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 20 July 2007 - 02:14 PM

I updated the miss_flag.php again to handle a fault within class display and sort order. Same file above!

As well you can download a flag table with some flags for Everquest I eqdkp_flags.sql. Time Stamp: 09. August
Be carefully if you have already set any flag within your system!

#3 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 21 July 2007 - 12:11 PM

Add a German language file not all is translated but enough.

#4 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 22 July 2007 - 02:07 AM

Guild Flag Plugin now works as designed.

Display error is fixed! The flag_name_short has to be unique!
Have fun Example

#5 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 08 August 2007 - 02:24 PM

I did some chances within the sql folder the work with mysql 5 and add a new flag file from start up.

#6 User is offline   nytedemon

  • Member
  • Pip
  • Group: Members
  • Posts: 9
  • Joined: 08-February 07

Posted 13 December 2007 - 12:12 AM

Would you be able to update it so you can edit more then one person at the sametime? Thanks.

#7 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 13 January 2008 - 01:35 AM

View Postnytedemon, on Dec 13 2007, 09:12 AM, said:

Would you be able to update it so you can edit more then one person at the sametime? Thanks.


I'll think about this and as soon I have some time I try to insert this function.

#8 User is offline   whitershins

  • Member
  • Pip
  • Group: Members
  • Posts: 81
  • Joined: 27-August 07

Posted 04 February 2008 - 08:59 PM

Is the archive missing an updated addraid.php or is the function to add the flag id to the raid_attendees table being handled elsewhere or has the structure been totally revamped?

#9 User is offline   Portrich

  • Member
  • Pip
  • Group: Members
  • Posts: 5
  • Joined: 24-November 05

Posted 30 March 2008 - 03:54 PM

I've made the edits, but still cannot access the admin options, or set the permissions. With the new version, are there any other files that are needed? This is a clean installation of 1.3.2 and the flags.zip listed in the first post.

#10 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 09 September 2008 - 12:13 PM

View PostPortrich, on Mar 31 2008, 12:54 AM, said:

I've made the edits, but still cannot access the admin options, or set the permissions. With the new version, are there any other files that are needed? This is a clean installation of 1.3.2 and the flags.zip listed in the first post.


I miss to post that if you have this permission problem you miss the some keys in the eqdkp_auth_options table. If you add the inserts to the diff_struct.sql it should update the table as soon as you install the plugin. Or you can run this at your database.

INSERT INTO eqdkp_auth_options (auth_id, auth_value, auth_default) VALUES(123, 'a_flags_add', 'N');
INSERT INTO eqdkp_auth_options (auth_id, auth_value, auth_default) VALUES(124, 'a_flags_edit', 'N');
INSERT INTO eqdkp_auth_options (auth_id, auth_value, auth_default) VALUES(125, 'a_flags_delete', 'N');
INSERT INTO eqdkp_auth_options (auth_id, auth_value, auth_default) VALUES(126, 'u_flags_edit_member', 'N');
INSERT INTO eqdkp_auth_options (auth_id, auth_value, auth_default) VALUES(127, 'u_flags_view', 'Y');


#11 User is offline   Cymerlin

  • Member
  • Pip
  • Group: Members
  • Posts: 153
  • Joined: 24-August 05

Posted 09 September 2008 - 01:41 PM

View Postwhitershins, on Feb 5 2008, 05:59 AM, said:

Is the archive missing an updated addraid.php or is the function to add the flag id to the raid_attendees table being handled elsewhere or has the structure been totally revamped?


Hi,

you can associate a flag with a raid but if you do so all member within the raid gets automatically the flag.

#12 User is offline   Angahran

  • Member
  • Pip
  • Group: Members
  • Posts: 28
  • Joined: 25-October 08

Posted 24 February 2010 - 11:49 PM

View Postwhitershins, on 04 February 2008 - 11:59 PM, said:

Is the archive missing an updated addraid.php or is the function to add the flag id to the raid_attendees table being handled elsewhere or has the structure been totally revamped?


I have to say thank you to the author of this plugin, it is very useful.

I had to hack around at addraid.php myself to get it to add the flags to raid_attendees_table.

I've just about managed to get this to work, with a few peculiarities.

What is the 'Missing' column for ? It does not show anything.

I'm using the 'Short Name' field to show the expansion the flag is from (or 'Keyring' if it is a key) and I'd like to be able to add a filter so I can filter it, but I can't seem to figure out how to get the filter to work.

I don't suppose anyone else has tried this and got a working filter ?

Ang.

This post has been edited by Angahran: 24 February 2010 - 11:51 PM


#13 User is offline   Angahran

  • Member
  • Pip
  • Group: Members
  • Posts: 28
  • Joined: 25-October 08

Posted 24 February 2010 - 11:50 PM

bah double post

This post has been edited by Angahran: 24 February 2010 - 11:51 PM


#14 User is offline   Aborianus

  • Member
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 12-June 10

Posted 13 June 2010 - 01:49 PM

Can anyone provide me with a SQL dump of ALL the flags?
There is a link above that provides all the sql inserts up to TSS flag2.


I am looking for all the flags in one SQL dump so i can drop the flags table and recreate it with all the flag entries.


THANK YOU

This post has been edited by Aborianus: 13 June 2010 - 01:53 PM


Page 1 of 1
  • 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