Difference between revisions of "Getguildmasterid"
From Hercules Wiki
(Created page with "==Syntax== *'''getguildmasterid'''(<guild id>); ==Description== This function will return the character ID number of the guild master of the guild specified by the ID. 0 if ...") |
Revision as of 08:08, 28 June 2013
Contents |
Syntax
- getguildmasterid(<guild id>);
Description
This function will return the character ID number of the guild master of the guild specified by the ID. 0 if the character is not a guild master of any guild.
Examples
prontera,155,180,5 script guildmasterID 89,{ if (getcharid(2)!=0) { mes getguildmasterid(getcharid(2))+" it's your guildmaster id"; close; } }