TITLE: 基本ルール

**MainCommand [#u0ba1843]

-キャンプ
-移動
-システム

----

**Functions [#ad93992f]

 alert("Functions");
 root.stack = [];
 root.list = [];
 root.command = {};
 root.members = ["マリスター", "レイピア"];
 
 root.func.updateList = function(xml){
   root.list = [];
   $("item", xml).each(function(){
     root.list.push($(this).text());
   });
 }
 
 root.func.loadSection = function(xml){
   var items = $("item", xml);
   if(items){
     items.each(function(){
       root.list.push($(this).text());
     });
   }
 
   var jslogic = $("logic", xml);
   if(jslogic){
     eval(jslogic);
   }
 }

----

**キャンプ [#nbc8b423]

 root.list = root.members;

----

**移動 [#u4d9edbf]

-北
-西
-南
-東

----


    ホーム 一覧 単語検索 最終更新 バックアップ   ヘルプ   最終更新のRSS