<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/asgarddata/">
    <title>asgarddata @ ウィキ</title>
    <link>http://w.atwiki.jp/asgarddata/</link>
    <atom:link href="https://w.atwiki.jp/asgarddata/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>asgarddata @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2015-07-13T22:53:24+09:00</dc:date>
    <utime>1436795604</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/37.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/36.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/35.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/34.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/33.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/32.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/31.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/30.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/29.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/asgarddata/pages/28.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/37.html">
    <title>S84</title>
    <link>https://w.atwiki.jp/asgarddata/pages/37.html</link>
    <description>
      *SCooltimePacket

 Byte(subType);
 if(subType == 0) {
   Int(delay);
   String(className);
 }
 else if(subType == 1) {
   Byte(isAnimal);
   if(!isAnimal) {
     Int(delay);
     String(className);
   }
 }    </description>
    <dc:date>2015-07-13T22:53:24+09:00</dc:date>
    <utime>1436795604</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/36.html">
    <title>S43</title>
    <link>https://w.atwiki.jp/asgarddata/pages/36.html</link>
    <description>
      *SColorPalettePacket

 Byte(type);
 switch(type)
 {
   case 0:
     Byte();
     break;
   case 1:
     Byte(palIndex);
     if(palIndex == 0x19) {
       Byte(count);
       for(i = 0; i &lt; count; i++)
         Short(paletteData[i]);
     }
     else {
       Short(paletteData[palIndex]);
     }
     break;
 }    </description>
    <dc:date>2015-07-13T22:44:53+09:00</dc:date>
    <utime>1436795093</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/35.html">
    <title>S66</title>
    <link>https://w.atwiki.jp/asgarddata/pages/35.html</link>
    <description>
      *SCheckTimePacket

 Int(serverTime);

|serverTime||    </description>
    <dc:date>2015-07-13T22:41:25+09:00</dc:date>
    <utime>1436794885</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/34.html">
    <title>S1F</title>
    <link>https://w.atwiki.jp/asgarddata/pages/34.html</link>
    <description>
      *SChangeWeatherPacket

 Byte(weatherCode);
 Byte(index);

|weatherCode|1の場合indexの天気が反映される模様|
|index|下記参照|

|index|クライアントの関数名|
|0x01|SetWeatherSakura|
|0x03|SetWeatherRain|
|0x04|SetWeatherHeavyRain|
|0x08|SetWeatherSnow|
|0x0A|SetWeatherSnow|
|0x0C|SetWeatherHeartRed|
|0x0D|SetWeatherHeartBlue|
|0x0E|SetWeatherHeartYellow|
|0x0F|SetWeatherCoin|
|0x10|SetWeatherLeaf|
|0x11|SetWeatherHeartMixed|
|0x12|SetWeatherCloud|    </description>
    <dc:date>2015-07-17T18:06:47+09:00</dc:date>
    <utime>1437124007</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/33.html">
    <title>S20</title>
    <link>https://w.atwiki.jp/asgarddata/pages/33.html</link>
    <description>
      *SChangeHourPacket

 Byte(hour);
 Byte(minute);

|hour|Hour|
|minute|Minute|

リアル時間とゲーム内時間はこんな感じ。1999/12/31から8倍の時間で進んでいる。
            const DateTime origin = DateTime.Parse(&quot;1999/12/31 00:00:00&quot;);
            long now = DateTime.Now.Ticks;
            long gameTime = (DateTime.Now.Ticks - origin.Ticks) * 8;
            return DateTime.FromBinary(gameTime);    </description>
    <dc:date>2015-07-17T18:10:03+09:00</dc:date>
    <utime>1437124203</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/32.html">
    <title>S11</title>
    <link>https://w.atwiki.jp/asgarddata/pages/32.html</link>
    <description>
      *SChangeDirectionPacket

 Int(id);
 Byte(dir);

|id|Object ID|
|dir|Direction|

Directionはキャラクターを中心としてこの向き
704
3C1
625    </description>
    <dc:date>2015-07-17T18:11:57+09:00</dc:date>
    <utime>1437124317</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/31.html">
    <title>S52</title>
    <link>https://w.atwiki.jp/asgarddata/pages/31.html</link>
    <description>
      *SCastSpellPacket

 Int(id);
 Byte(code);    </description>
    <dc:date>2015-07-13T22:37:00+09:00</dc:date>
    <utime>1436794620</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/30.html">
    <title>S48</title>
    <link>https://w.atwiki.jp/asgarddata/pages/30.html</link>
    <description>
      *SCancelCastSpellPacket

 Int(id);

|id|Spell ID|    </description>
    <dc:date>2015-07-13T22:36:06+09:00</dc:date>
    <utime>1436794566</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/29.html">
    <title>S78</title>
    <link>https://w.atwiki.jp/asgarddata/pages/29.html</link>
    <description>
      *SBulletinBoardPacket

 Byte(type);
 switch(type)
 {
   case 0:
     Byte();
     break;
   case 2:
     Byte(count);
     while(count--) {
       String();
       String();
       Byte();
       Int();
     }
     break;
 }    </description>
    <dc:date>2015-07-13T22:35:09+09:00</dc:date>
    <utime>1436794509</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/asgarddata/pages/28.html">
    <title>S4B</title>
    <link>https://w.atwiki.jp/asgarddata/pages/28.html</link>
    <description>
      *SBouncePacket

 Short(size);
 Raw(unknown, size)    </description>
    <dc:date>2015-07-13T22:33:48+09:00</dc:date>
    <utime>1436794428</utime>
  </item>
  </rdf:RDF>
