<?xml version="1.0" encoding="iso-8859-1" ?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<!--
	This feed generated for Anonymous
	More info at http://naklon.info/rss/about.htm
-->
  <title>Server Help</title>
  <generator>RSS Feed 2.2.4</generator>
  <link rel="alternate" type="text/html"
   href="http://forums.minegoboom.com/"/>
  <modified>2012-05-19T18:43:43Z</modified>
  <entry>
    <title mode="escaped">Announcements :: RE: Flaming pit of hell</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83692#83692"/>
    <dc:creator>Cheese</dc:creator>
    <dc:subject>Announcements</dc:subject>
    <author>
		<name>Cheese</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83692#83692</id>
    <issued>2012-05-12T00:34:56Z</issued>
    <modified>2012-05-12T00:34:56Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;http://forums.minegoboom.com/profile.php?mode=viewprofile&amp;u=1168&quot; target=&quot;_blank&quot;&gt;Cheese&lt;/a&gt;&lt;br /&gt;
	Posted: Fri May 11, 2012 8:34 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	&lt;span style=&quot;font-style: italic&quot;&gt;&lt;a href=&quot;http://forums.minegoboom.com/viewtopic.php?t=8948&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Junked&lt;/a&gt; by Mine GO BOOM at May 11, 2012, 6:31 pm&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
you are dumb&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">Non-Subspace Related Coding :: Listview Problem!!?</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83691#83691"/>
    <dc:creator>Anonymous</dc:creator>
    <dc:subject>Non-Subspace Related Coding</dc:subject>
    <author>
		<name>Anonymous</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83691#83691</id>
    <issued>2012-05-09T08:44:24Z</issued>
    <modified>2012-05-09T08:44:24Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;mailto:grazier_aTouh17@yahoo.com&quot;&gt;grazier_aTouh17@yahoo.com&lt;/a&gt;&lt;br /&gt;
	Subject: Listview Problem!!?&lt;br /&gt;Posted: Wed May 09, 2012 4:44 am (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	Can anyone help me...
&lt;br /&gt;

&lt;br /&gt;
The error occurs when i have added cat = ListView1.SelectedItem.ListSubItems(&lt;img src=&quot;http://forums.minegoboom.com/images/smiles/icon_cool.gif&quot; alt=&quot;icon_cool.gif&quot; border=&quot;0&quot; /&gt;, it says &quot;Index out of bounds&quot;... i have to display the data from the listview to my 20 textboxes. but when i added the category &quot;cat&quot; the index is out of bounds. and when i added more info and do the same it also give the same error......can anyone help me on this..thanks a lot.... me = ID no.
&lt;br /&gt;

&lt;br /&gt;
        Name= Name of Employee
&lt;br /&gt;
        departement =Department
&lt;br /&gt;
        divisi = Division
&lt;br /&gt;
        status = Status
&lt;br /&gt;
        ttl = date
&lt;br /&gt;
        gender =sex
&lt;br /&gt;
        cat = type  
&lt;br /&gt;
        permanent =permanent
&lt;br /&gt;
        resident=resident
&lt;br /&gt;

&lt;br /&gt;
Private Sub ListView1_Click()
&lt;br /&gt;
roat
&lt;br /&gt;
End Sub
&lt;br /&gt;

&lt;br /&gt;
Private Sub roat()
&lt;br /&gt;
If ListView1.ListItems.Count = 0 Then Exit Sub
&lt;br /&gt;

&lt;br /&gt;
    For i = 0 To ListView1.ListItems.Count
&lt;br /&gt;

&lt;br /&gt;
        me = ListView1.SelectedItem
&lt;br /&gt;
        name = ListView1.SelectedItem.SubItems(1)
&lt;br /&gt;
      department = ListView1.SelectedItem.SubItems(2)
&lt;br /&gt;
        division = ListView1.SelectedItem.SubItems(3)
&lt;br /&gt;
        status = ListView1.SelectedItem.SubItems(4)
&lt;br /&gt;
       date = ListView1.SelectedItem.SubItems(5)
&lt;br /&gt;
        gender = ListView1.SelectedItem.ListSubItems(6)
&lt;br /&gt;
        Location = ListView1.SelectedItem.ListSubItems(7)
&lt;br /&gt;

&lt;br /&gt;
        cat = ListView1.SelectedItem.ListSubItems(&lt;img src=&quot;http://forums.minegoboom.com/images/smiles/icon_cool.gif&quot; alt=&quot;icon_cool.gif&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;
       permanent = ListView1.SelectedItem.ListSubItems(9)
&lt;br /&gt;
       resident = ListView1.SelectedItem.ListSubItems(10)
&lt;br /&gt;

&lt;br /&gt;
    Next
&lt;br /&gt;

&lt;br /&gt;
txtID.Text = me
&lt;br /&gt;
txtName.Text = name
&lt;br /&gt;
cbodept.Text = department
&lt;br /&gt;
cbounit.Text = division
&lt;br /&gt;
cbostat.Text = status
&lt;br /&gt;
DTPicker1.Value = date
&lt;br /&gt;
cbosex.Text = gender
&lt;br /&gt;
txtaddress.Text = Location
&lt;br /&gt;
cbotype.Text = cat
&lt;br /&gt;
txtpermanent.Text = permanent
&lt;br /&gt;
txtresident.Text = resident
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Konek_Recordset rscarp, &quot;Select * from kapal  where me=&quot; &amp; me
&lt;br /&gt;
If kapal.RecordCount = 0 Then Exit Sub
&lt;br /&gt;
Set mstream = New ADODB.Stream
&lt;br /&gt;
mstream.Type = adTypeBinary
&lt;br /&gt;
mstream.Open
&lt;br /&gt;
If IsNull(kapal.Fields(&quot;photo&quot;)) = False Then
&lt;br /&gt;
    mstream.Write rscaripic.Fields(&quot;photo&quot;).Value
&lt;br /&gt;
    mstream.SaveToFile &quot;&quot; &amp; App.Path &amp; &quot;\image\photo.gif&quot;, adSaveCreateOverWrite
&lt;br /&gt;
    Image4.Picture = LoadPicture(&quot;&quot; &amp; App.Path &amp; &quot;\image\photo.gif&quot;)
&lt;br /&gt;
Else
&lt;br /&gt;
Image4.Picture = LoadPicture(&quot;&quot; &amp; App.Path &amp; &quot;\image\cewe.gif&quot;)
&lt;br /&gt;
End If
&lt;br /&gt;
End Sub&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">General Questions :: RE: bug</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83690#83690"/>
    <dc:creator>Mine GO BOOM</dc:creator>
    <dc:subject>General Questions</dc:subject>
    <author>
		<name>Mine GO BOOM</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83690#83690</id>
    <issued>2012-05-06T19:33:00Z</issued>
    <modified>2012-05-06T19:33:00Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;http://forums.minegoboom.com/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;Mine GO BOOM&lt;/a&gt;&lt;br /&gt;
	Posted: Sun May 06, 2012 3:33 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	This has been a known bug for a while due to the protocol. Because a 0 byte news file is impossible to transmit while 0 bytes also indicates that it isn't available. Just add a space to it and it will work fine.&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">ASSS Questions :: RE: per-arena commands?</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83689#83689"/>
    <dc:creator>Anonymous</dc:creator>
    <dc:subject>ASSS Questions</dc:subject>
    <author>
		<name>Anonymous</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83689#83689</id>
    <issued>2012-05-06T03:05:10Z</issued>
    <modified>2012-05-06T03:05:10Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;br /&gt;
	Posted: Sat May 05, 2012 11:05 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	Thats doable, but defeats the purpose. To rename the function you need 2 modules stats_pub.py and stats_somesubarena.py. Then you have to edit the function names, and use prefix's for the commands aswell ?mypubstats, ?mysubarenastats etc.. And what if you want to setup something in the &quot;default arena&quot;, how could you swing that?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
I'm just curious if Im doing something wrong or if this is just how it is.&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">General Questions :: RE: bug</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83688#83688"/>
    <dc:creator>Cheese</dc:creator>
    <dc:subject>General Questions</dc:subject>
    <author>
		<name>Cheese</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83688#83688</id>
    <issued>2012-05-06T02:10:51Z</issued>
    <modified>2012-05-06T02:10:51Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;http://forums.minegoboom.com/profile.php?mode=viewprofile&amp;u=1168&quot; target=&quot;_blank&quot;&gt;Cheese&lt;/a&gt;&lt;br /&gt;
	Posted: Sat May 05, 2012 10:10 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	cool story bro&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">ASSS Questions :: RE: per-arena commands?</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83687#83687"/>
    <dc:creator>Cheese</dc:creator>
    <dc:subject>ASSS Questions</dc:subject>
    <author>
		<name>Cheese</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83687#83687</id>
    <issued>2012-05-06T02:10:10Z</issued>
    <modified>2012-05-06T02:10:10Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;http://forums.minegoboom.com/profile.php?mode=viewprofile&amp;u=1168&quot; target=&quot;_blank&quot;&gt;Cheese&lt;/a&gt;&lt;br /&gt;
	Posted: Sat May 05, 2012 10:10 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	not very good with py, but if it calls that function name, just name the function differently&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">General Questions :: bug</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83686#83686"/>
    <dc:creator>FDKGJHDLGFJKH</dc:creator>
    <dc:subject>General Questions</dc:subject>
    <author>
		<name>FDKGJHDLGFJKH</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83686#83686</id>
    <issued>2012-05-06T00:00:53Z</issued>
    <modified>2012-05-06T00:00:53Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;a href=&quot;http://forums.minegoboom.com/profile.php?mode=viewprofile&amp;u=1016&quot; target=&quot;_blank&quot;&gt;FDKGJHDLGFJKH&lt;/a&gt;&lt;br /&gt;
	Subject: bug&lt;br /&gt;Posted: Sat May 05, 2012 8:00 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	When I erased all my news.txt and then entered my zone it didn't enter zone without showing the news like a long time ago.&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
  <entry>
    <title mode="escaped">ASSS Questions :: RE: per-arena commands?</title>
    <link rel="alternate" type="text/html"
     href="http://forums.minegoboom.com/viewtopic.php?p=83685#83685"/>
    <dc:creator>Anonymous</dc:creator>
    <dc:subject>ASSS Questions</dc:subject>
    <author>
		<name>Anonymous</name>
    </author>
    <id>http://forums.minegoboom.com/viewtopic.php?p=83685#83685</id>
    <issued>2012-05-05T20:40:39Z</issued>
    <modified>2012-05-05T20:40:39Z</modified>
	<content type="text/html" mode="escaped">Author: &lt;br /&gt;
	Posted: Sat May 05, 2012 4:40 pm (GMT -5)&lt;br /&gt;&lt;br /&gt;&lt;span class="postbody"&gt;
	The callbacks work as expected per-arena: 
&lt;br /&gt;

&lt;br /&gt;
Example CB_PLAYERACTION: Works only when a player enter or exit THAT arena.
&lt;br /&gt;
&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt;	&lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;div style=&quot;margin:5px&quot;&gt;&lt;div class=&quot;genmed&quot; style=&quot;margin-bottom:2px&quot;&gt;&lt;b&gt;Code:&lt;/b&gt; &lt;span class=&quot;gensmall&quot;&gt;&lt;a href=&quot;javascript:void(0)&quot; value=&quot;Hide&quot; style=&quot;width:45px;font-size:10px;margin:0px;padding:0px;&quot; onClick=&quot;if (this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.value = 'Show'; }&quot;&gt;Show/Hide&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;code&quot;&gt;&lt;div style=&quot;display: ;&quot;&gt;
&lt;br /&gt;
arena.stats_PLAYERACTION_CB = \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;asss.reg_callback&amp;#40;asss.CB_PLAYERACTION, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;store_stats, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;arena&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
def store_stats&amp;#40;p, action, arena&amp;#41;&amp;#58;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;if action == asss.PA_ENTERARENA&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;for item in arena.stats_saves&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;if item&amp;#91;'name'&amp;#93; == p.name&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;p.stats = item
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;arena.stats_saves.remove&amp;#40;item&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;chat.SendMessage&amp;#40;p, 'PA_ENTERARENA stats restored'&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;return
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;p.stats = &amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'name'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; p.name, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'freq'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; -1, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'kills'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'deaths'&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'tks'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'touch'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'kscore'&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'fscore'&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; 0, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;'bscore'&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#58;&amp;nbsp; 0&amp;#125;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;chat.SendMessage&amp;#40;p, 'PA_ENTERARENA stats renewed'&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;elif action == asss.PA_LEAVEARENA&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;arena.stats_saves.append&amp;#40;p.stats&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;chat.SendMessage&amp;#40;p, 'PA_LEAVEARENA stats saved'&amp;#41;
&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
But commands, and the arena is passed correctly, calls all gamestats() functions in all modules in all arenas.
&lt;br /&gt;

&lt;br /&gt;
Example:
&lt;br /&gt;
&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt;	&lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;div style=&quot;margin:5px&quot;&gt;&lt;div class=&quot;genmed&quot; style=&quot;margin-bottom:2px&quot;&gt;&lt;b&gt;Code:&lt;/b&gt; &lt;span class=&quot;gensmall&quot;&gt;&lt;a href=&quot;javascript:void(0)&quot; value=&quot;Hide&quot; style=&quot;width:45px;font-size:10px;margin:0px;padding:0px;&quot; onClick=&quot;if (this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.value = 'Show'; }&quot;&gt;Show/Hide&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;code&quot;&gt;&lt;div style=&quot;display: ;&quot;&gt;
&lt;br /&gt;
arena.stats_gamestats_cmd = \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;asss.add_command&amp;#40;&amp;quot;gamestats&amp;quot;, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;gamestats, \
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;arena&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
def gamestats&amp;#40;cmd, params, p, arena&amp;#41;&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;chat.SendMessage&amp;#40;p, 'gamestats from this arena'&amp;#41;
&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
cmdman.h
&lt;br /&gt;

&lt;br /&gt;
 * command handlers come in two flavors, which differ only in whether
&lt;br /&gt;
 * the handler gets to see the command name that was used. this can only
&lt;br /&gt;
 * make a difference if the same handler is used for multiple commands,
&lt;br /&gt;
 * of course. also, if you want to register per-arena commands, you need
&lt;br /&gt;
 * to use the second flavor. all handlers may assume p and p-&amp;gt;arena are
&lt;br /&gt;
 * non-NULL.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
 I think im not understanding what the other flavor is or how to use it, or maybe im missing something right in front of my face. 
&lt;br /&gt;
 
&lt;br /&gt;
 Eye strain head hurts please help!&lt;/span&gt;&lt;br /&gt;
	</content>
  </entry>
</feed>

<!-- Page generation time: 0.2082s  - Memory Usage: 1.864 Mb  - GZIP disabled -->
