源战役
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

9 righe
596 B

  1. -- liushl 护送
  2. CREATE TABLE `role_convoy` (
  3. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  4. `convoy_id` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '可护送对象',
  5. `last_attack_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '上次攻击护送玩家时间',
  6. `is_robber` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否打劫状态##1是|0不是',
  7. `convoying` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '当前护送对象##没有时为0',
  8. PRIMARY KEY (`role_id`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='护送信息##合服保留';