<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_GetGuildBankWithdrawGoldLimit</id>
	<title>WoW:API GetGuildBankWithdrawGoldLimit - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_GetGuildBankWithdrawGoldLimit"/>
	<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_GetGuildBankWithdrawGoldLimit&amp;action=history"/>
	<updated>2026-06-02T00:16:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_GetGuildBankWithdrawGoldLimit&amp;diff=20225&amp;oldid=prev</id>
		<title>Move page script: Move page script moved page API GetGuildBankWithdrawGoldLimit to WoW:API GetGuildBankWithdrawGoldLimit without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_GetGuildBankWithdrawGoldLimit&amp;diff=20225&amp;oldid=prev"/>
		<updated>2023-08-15T04:45:58Z</updated>

		<summary type="html">&lt;p&gt;Move page script moved page &lt;a href=&quot;/wiki/WoW:API_GetGuildBankWithdrawGoldLimit&quot; title=&quot;WoW:API GetGuildBankWithdrawGoldLimit&quot;&gt;API GetGuildBankWithdrawGoldLimit&lt;/a&gt; to &lt;a href=&quot;/wiki/WoW:API_GetGuildBankWithdrawGoldLimit&quot; title=&quot;WoW:API GetGuildBankWithdrawGoldLimit&quot;&gt;API GetGuildBankWithdrawGoldLimit&lt;/a&gt; without leaving a redirect&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:45, 15 August 2023&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Move page script</name></author>
	</entry>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_GetGuildBankWithdrawGoldLimit&amp;diff=20224&amp;oldid=prev</id>
		<title>WoWWiki&gt;DigitalSorceress: Creating new entry for this function</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_GetGuildBankWithdrawGoldLimit&amp;diff=20224&amp;oldid=prev"/>
		<updated>2012-01-01T19:34:54Z</updated>

		<summary type="html">&lt;p&gt;Creating new entry for this function&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{wowapi}}&lt;br /&gt;
 dailyGoldWithdrawlLimit = GetGuildBankWithdrawGoldLimit()&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&amp;#039;&amp;#039;&amp;#039;Arguments&amp;#039;&amp;#039;&amp;#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;!-- List each argument, together with its type --&amp;gt;&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&amp;#039;&amp;#039;&amp;#039;Returns&amp;#039;&amp;#039;&amp;#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;!-- List each return value, together with its type --&amp;gt;&lt;br /&gt;
:;dailyGoldWithdrawlLimit : Number - amount (in GOLD) the currently selected Guild Rank can withdraw per day&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
&amp;lt;!-- Details not appropriate for the main description can go here. &lt;br /&gt;
     REMOVE the section if you&amp;#039;re just going to restate the intro line! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In order for this to work properly, you need to have a rank set in the guildControl&lt;br /&gt;
&lt;br /&gt;
Example of checking the daily limit for the currently logged on character...&lt;br /&gt;
&lt;br /&gt;
: -- create somewhere to store the result and default it&lt;br /&gt;
: local dailyGoldWithdrawlLimit = 0&lt;br /&gt;
:&lt;br /&gt;
: -- need to get the guildRankIndex for the currently logged on player&lt;br /&gt;
: guildName, _, guildRankIndex = GetGuildInfo(&amp;quot;player&amp;quot;)&lt;br /&gt;
: -- guildName is nil if the character isn&amp;#039;t in a guild&lt;br /&gt;
: if (guildName ~= nil) then&lt;br /&gt;
:   -- This character is in a guild, so set the current rank so the limit will work&lt;br /&gt;
:   GuildControlSetRank(guildRankIndex)&lt;br /&gt;
:   dailyGoldWithdrawlLimit = GetGuildBankWithdrawGoldLimit()&lt;br /&gt;
: end&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
: NOTE: this return value is in GOLD unlike many other currency returns in WOW where they give you copper pieces...&lt;/div&gt;</summary>
		<author><name>WoWWiki&gt;DigitalSorceress</name></author>
	</entry>
</feed>