设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 59|回复: 0

[转载发布] State Common Events

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    7976

    主题

    864

    回帖

    3万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    29959
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    38829

    灌水之王

    发表于 4 天前 | 显示全部楼层 |阅读模式
    State Common Events v1.02


    Instruction
            State add/remove common events via notetags. Ex:

            <StateCE Event: 1 onadd>
            <StateCE Event: 2 onremove>


            <StateCE Event: 3 onexpire>


            The preceding lines will run common event ID 0001 on add, common event ID 0002 on remove, and common event ID 0003 on expire for the state tagged. The expire flag will cause the common event to occur if the state is removed by walking/damage/turn/tick or action removal based on the state settings.


            I could take this one step further and add flags for each of the above mentioned removal cases for finer control over progressive states.


    Version 1.02


            Added 2 new parameters that assign information to game variables. Parameter Actor will store the actor ID in the chosen game variable. Parameter Occurs will store if state is add remove or expire (1, 2, and 3)  in the chosen game variable. You can then check these variables in the state's common event.


    Compatibility


            Should be compatible with most everything but let me know if you encounter issues. Verified working with Yanfly's ATB and turn-based battle engine.


    Use Case Examples


            Want to have Haste remove Slow? Stop remove Haste? Venom become the more deadly Poison? Poison inflict death after 10 turns? These are some of the things you can do with state events.


    Tips


            - Use Tsukihime's CommonEventQueue if you want to queue multiple events.


    http://himeworks.com/2015/10/common-event-queue-mv/


    Script v1.02

    Spoiler/*=============================================================================
    * Gilgamar - State Common Event
    * By Gilgamar
    * G_StateCE.js
    * Version: 1.02
    * Free for commercial and non commercial use.
    *=============================================================================*/

    var Imported = Imported || {};
    Imported.G_StateCE = true;

    var StateCE = {};

    /*:
    * @plugindesc v1.02 Enable state common events.
    * @author Gilgamar
    *
    * @param Actor
    * @desc ID of game variaable to use.
    * Contains ID of actor affected by state change.
    * @default 0
    *
    * @param Occurs
    * @desc ID of game variaable to use.
    * Shows if state is onadd, onremove or onexpire.
    * @default 0
    *
    * @help
    * ============================================================================
    * Introduction
    * ============================================================================
    * Enables state add/remove common events via notetags. Ex:
    *
    * <StateCE Event: 1 onadd>
    * <StateCE Event: 2 onremove>
    * <StateCE Event: 3 onexpire>
    *
    * The precedling lines will run common event ID 001 on state add, ID 002
    * on state remove, and ID 003 on state expire for the state tagged.
    *
    * Use the game variable assigned in param Actor to determine which actor was
    * affected by state change in your common event.
    *
    * Use the game variable assigned in param Occurs to determine which state
    * change was applied. You can use this instead of separate common events.
    * 1 = onadd
    * 2 = onremove
    * 3 = onexpire
    *
    * ============================================================================
    * Changelog
    * ============================================================================
    * Version 1.02:
    * - Added Actor param so we can see who was affected by state change
    * - Added Occurs param so we can if state is add/remove or expire
    *
    * Version 1.01:
    * - Added onexpire notetag for progressive states
    * - Compatibile with Yanfly BattleEngine (turn-based and tick-based)
    *
    * Version 1.00:
    * - Enables state add/remove common events via notetags
    */

    //=============================================================================
    // Parameters
    //=============================================================================

    StateCE.Parameters = PluginManager.parameters('G_StateCE');
    StateCE.Param = StateCE.Param || {};
    StateCE.Param.Actor    = String(StateCE.Parameters['Actor']);
    StateCE.Param.Occurs   = String(StateCE.Parameters['Occurs']);

    //=============================================================================
    // Notetags
    //=============================================================================

    StateCE.DataManager_isDatabaseLoaded = DataManager.isDatabaseLoaded;
    DataManager.isDatabaseLoaded = function() {
        if (!StateCE.DataManager_isDatabaseLoaded.call(this)) return false;
        DataManager.processSTATECENotetags1($dataStates);
        return true;
    };

    DataManager.processSTATECENotetags1 = function(group) {
        // Check if function called more than once
        if (DataManager.processSTATECENotetags1.calledTimes++ > 1) return;

        var note1 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONADD)>/i;
        var note2 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONREMOVE)>/i;
        var note3 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONEXPIRE)>/i;

        for (var n = 1; n < group.length; n++) {
            var obj = group[n];
            var notedata = obj.note.split(/[\r\n]+/);
            // console.log(notedata)
            obj.commonEvents = [];
            for (var i = 0; i < notedata.length; i++) {
                var line = notedata;
                if (line.match(note1)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onadd'
                    });
                } else if (line.match(note2)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onremove'
                    });
                } else if (line.match(note3)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onexpire'
                    });
                }
            }
        }
        // console.log(group)

    };
    DataManager.processSTATECENotetags1.calledTimes = 0;

    //=============================================================================
    // StateCE Functions
    //=============================================================================

    // Queue the common event associated with the state
    StateCE.changeState = function(actor, stateId, occurs) {
        var state = $dataStates[stateId];
        for (var i = 0; i < state.commonEvents.length; i++){
            var commonEvent = state.commonEvents;
            if (commonEvent.occurs === occurs) {

                // DEBUGGING
                console.log('Actor', actor._actorId)
                console.log('State', occurs)
                console.log(commonEvent)

                // Saving ID of actor affected by state change
                $gameVariables.setValue(StateCE.Param.Actor, actor._actorId);
                // Saving state occurs
                if (occurs === 'onadd')     $gameVariables.setValue(StateCE.Param.Occurs, 1);
                if (occurs === 'onremove')  $gameVariables.setValue(StateCE.Param.Occurs, 2);
                if (occurs === 'onexpire')  $gameVariables.setValue(StateCE.Param.Occurs, 3);
                // Update common events
                $gameTemp.reserveCommonEvent(commonEvent.eventId);
            }
        }
    }
    StateCE.onAdd    = function(actor, stateId) {this.changeState(actor, stateId, 'onadd')}
    StateCE.onRemove = function(actor, stateId) {this.changeState(actor, stateId, 'onremove')}
    StateCE.onExpire = function(actor, stateId) {this.changeState(actor, stateId, 'onexpire')}

    // Borrowed this function from Himeworks progressive states
    Game_Battler.prototype.compareStates = function(oldStates, newStates) {
        for (var i = 0, len = oldStates.length; i < len; i++) {
            var stateId = oldStates;
            var state = $dataStates[stateId];
            if (!newStates.contains(stateId)) {
                StateCE.onExpire(this, stateId);
            }
        }
    }

    //=============================================================================
    // RPG Maker Overrides for State Add/Remove
    //=============================================================================

    StateCE.Game_Battler_removeState = Game_Battler.prototype.removeState;
    Game_Battler.prototype.removeState = function(stateId) {
        StateCE.Game_Battler_removeState.call(this, stateId);
        StateCE.onRemove(this, stateId);
    };

    StateCE.Game_Battler_addState = Game_Battler.prototype.addState;
    Game_Battler.prototype.addState = function(stateId) {
        StateCE.Game_Battler_addState.call(this, stateId);
        StateCE.onAdd(this, stateId);
    };

    //=============================================================================
    // RPG Maker Overrides for State Expiry
    //=============================================================================

    /* Remove by walking */
    StateCE.GameActor_updateStateSteps = Game_Actor.prototype.updateStateSteps;
    Game_Actor.prototype.updateStateSteps = function(state) {
        StateCE.GameActor_updateStateSteps.call(this, state);
        if (!this.isStateAffected(state.id)) { StateCE.onExpire(this, state.id) }
    };

    /* Remove by damage */
    StateCE._GameBattler_removeStatesByDamage = Game_Battler.prototype.removeStatesByDamage;
    Game_Battler.prototype.removeStatesByDamage = function() {
        var oldStates = this._states.clone();
        StateCE._GameBattler_removeStatesByDamage.call(this);
        var newStates = this._states;
        this.compareStates(oldStates, newStates);
    };

    /* Remove by turn end and action end */
    if (Imported.YEP_BattleEngineCore) {

        StateCE.Game_BattlerBase_updateStateTurnTiming = Game_BattlerBase.prototype.updateStateTurnTiming;
        Game_BattlerBase.prototype.updateStateTurnTiming = function(timing) {
            var oldStates = this._states.clone();
            StateCE.Game_BattlerBase_updateStateTurnTiming.call(this, timing);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

        StateCE.Game_BattlerBase_updateStateTicks = Game_BattlerBase.prototype.updateStateTicks;
        Game_BattlerBase.prototype.updateStateTicks = function() {
            var oldStates = this._states.clone();
            StateCE.Game_BattlerBase_updateStateTicks.call(this);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

    } else {

        StateCE._GameBattler_removeStatesAuto = Game_Battler.prototype.removeStatesAuto;
        Game_Battler.prototype.removeStatesAuto = function(timing) {
            var oldStates = this._states.clone();
            StateCE._GameBattler_removeStatesAuto.call(this, timing);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

    };

    //=============================================================================
    // RPG Maker Code References
    //=============================================================================

    // Game_Actor.prototype.updateStateSteps = function(state) {
    //     if (state.removeByWalking) {
    //         if (this._stateSteps[state.id] > 0) {
    //             if (--this._stateSteps[state.id] === 0) {
    //                 this.removeState(state.id);
    //             }
    //         }
    //     }
    // };
    //
    // Game_Battler.prototype.removeStatesByDamage = function() {
    //     this.states().forEach(function(state) {
    //         if (state.removeByDamage && Math.randomInt(100) < state.chanceByDamage) {
    //             this.removeState(state.id);
    //         }
    //     }, this);
    // };
    //
    // Game_Battler.prototype.removeStatesAuto = function(timing) {
    //     this.states().forEach(function(state) {
    //         if (this.isStateExpired(state.id) && state.autoRemovalTiming === timing) {
    //             this.removeState(state.id);
    //         }
    //     }, this);
    // };
    //
    // Game_Battler.prototype.removeState = function(stateId) {
    //     if (this.isStateAffected(stateId)) {
    //         if (stateId === this.deathStateId()) {
    //             this.revive();
    //         }
    //         this.eraseState(stateId);
    //         this.refresh();
    //         this._result.pushRemovedState(stateId);
    //     }
    // };
    //
    // Game_Battler.prototype.addState = function(stateId) {
    //     if (this.isStateAddable(stateId)) {
    //         if (!this.isStateAffected(stateId)) {
    //             this.addNewState(stateId);
    //             this.refresh();
    //         }
    //         this.resetStateCounts(stateId);
    //         this._result.pushAddedState(stateId);
    //     }
    // };










    Script v1.01

    Spoiler/*=============================================================================
    * Gilgamar - State Common Event
    * By Gilgamar
    * G_StateCE.js
    * Version: 1.01
    * Free for commercial and non commercial use.
    *=============================================================================*/

    var Imported = Imported || {};
    Imported.G_StateCE = true;

    var StateCE = {};

    /*:
    * @plugindesc v1.01 Enable state common events.
    * @author Gilgamar
    *
    * @help
    * ============================================================================
    * Introduction
    * ============================================================================
    * Enables state add/remove common events via notetags. Ex:
    *
    * <StateCE Event: 1 onadd>
    * <StateCE Event: 2 onremove>
    * <StateCE Event: 3 onexpire>
    *
    * The precedling lines will run common event ID 001 on state add and common
    * event ID 002 on state removal for the state tagged.
    *
    * ============================================================================
    * Changelog
    * ============================================================================
    * Version 1.01:
    * - Added onexpire notetag for progressive states
    * - Compatibile with Yanfly BattleEngine (turn-based and tick-based)
    *
    * Version 1.00:
    * - Enables state add/remove common events via notetags
    */

    //=============================================================================
    // Notetags
    //=============================================================================

    StateCE.DataManager_isDatabaseLoaded = DataManager.isDatabaseLoaded;
    DataManager.isDatabaseLoaded = function() {
        if (!StateCE.DataManager_isDatabaseLoaded.call(this)) return false;
        DataManager.processSTATECENotetags1($dataStates);
        return true;
    };

    DataManager.processSTATECENotetags1 = function(group) {
        // Check if function called more than once
        if (DataManager.processSTATECENotetags1.calledTimes++ > 1) return;

        var note1 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONADD)>/i;
        var note2 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONREMOVE)>/i;
        var note3 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONEXPIRE)>/i;

        for (var n = 1; n < group.length; n++) {
            var obj = group[n];
            var notedata = obj.note.split(/[\r\n]+/);
            // console.log(notedata)
            obj.commonEvents = [];
            for (var i = 0; i < notedata.length; i++) {
                var line = notedata;
                if (line.match(note1)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onadd'
                    });
                } else if (line.match(note2)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onremove'
                    });
                } else if (line.match(note3)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onexpire'
                    });
                }
            }
        }
        console.log(group)

    };
    DataManager.processSTATECENotetags1.calledTimes = 0;

    //=============================================================================
    // StateCE Functions
    //=============================================================================

    StateCE.changeState = function(stateId, occurs) {
        var state = $dataStates[stateId];
        for (var i = 0; i < state.commonEvents.length; i++){
            var commonEvent = state.commonEvents;
            if (commonEvent.occurs === occurs) {
                console.log(commonEvent)
                switch (occurs) {
                    case 'onadd':
                        console.log('state add')
                        break;
                    case 'onremove':
                        console.log('state remove')
                        break;
                    case 'onexpire':
                        console.log('state expire')
                        break;
                }
                $gameTemp.reserveCommonEvent(commonEvent.eventId);
            }
        }
    }
    StateCE.onAdd    = function(stateId) {this.changeState(stateId, 'onadd')}
    StateCE.onRemove = function(stateId) {this.changeState(stateId, 'onremove')}
    StateCE.onExpire = function(stateId) {this.changeState(stateId, 'onexpire')}

    // Borrowed this function from Himeworks progressive states
    Game_Battler.prototype.compareStates = function(oldStates, newStates) {
        for (var i = 0, len = oldStates.length; i < len; i++) {
            var stateId = oldStates;
            var state = $dataStates[stateId];
            if (!newStates.contains(stateId)) {
                StateCE.onExpire(stateId);
            }
        }
    }

    //=============================================================================
    // RPG Maker Overrides for State Add/Remove
    //=============================================================================

    StateCE.Game_Battler_removeState = Game_Battler.prototype.removeState;
    Game_Battler.prototype.removeState = function(stateId) {
        StateCE.Game_Battler_removeState.call(this, stateId);
        StateCE.onRemove(stateId);
    };

    StateCE.Game_Battler_addState = Game_Battler.prototype.addState;
    Game_Battler.prototype.addState = function(stateId) {
        StateCE.Game_Battler_addState.call(this, stateId);
        StateCE.onAdd(stateId);
    };

    //=============================================================================
    // RPG Maker Overrides for State Expiry
    //=============================================================================

    /* Remove by walking */
    StateCE.GameActor_updateStateSteps = Game_Actor.prototype.updateStateSteps;
    Game_Actor.prototype.updateStateSteps = function(state) {
        StateCE.GameActor_updateStateSteps.call(this, state);
        if (!this.isStateAffected(state.id)) { StateCE.onExpire(state.id) }
    };

    /* Remove by damage */
    StateCE._GameBattler_removeStatesByDamage = Game_Battler.prototype.removeStatesByDamage;
    Game_Battler.prototype.removeStatesByDamage = function() {
        var oldStates = this._states.clone();
        StateCE._GameBattler_removeStatesByDamage.call(this);
        var newStates = this._states;
        this.compareStates(oldStates, newStates);
    };

    /* Remove by turn end and action end */
    if (Imported.YEP_BattleEngineCore) {

        StateCE.Game_BattlerBase_updateStateTurnTiming = Game_BattlerBase.prototype.updateStateTurnTiming;
        Game_BattlerBase.prototype.updateStateTurnTiming = function(timing) {
            var oldStates = this._states.clone();
            StateCE.Game_BattlerBase_updateStateTurnTiming.call(this, timing);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

        StateCE.Game_BattlerBase_updateStateTicks = Game_BattlerBase.prototype.updateStateTicks;
        Game_BattlerBase.prototype.updateStateTicks = function() {
            var oldStates = this._states.clone();
            StateCE.Game_BattlerBase_updateStateTicks.call(this);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

    } else {

        StateCE._GameBattler_removeStatesAuto = Game_Battler.prototype.removeStatesAuto;
        Game_Battler.prototype.removeStatesAuto = function(timing) {
            var oldStates = this._states.clone();
            StateCE._GameBattler_removeStatesAuto.call(this, timing);
            var newStates = this._states;
            this.compareStates(oldStates, newStates);
        };

    };

    //=============================================================================
    // RPG Maker Code References
    //=============================================================================

    // Game_Actor.prototype.updateStateSteps = function(state) {
    //     if (state.removeByWalking) {
    //         if (this._stateSteps[state.id] > 0) {
    //             if (--this._stateSteps[state.id] === 0) {
    //                 this.removeState(state.id);
    //             }
    //         }
    //     }
    // };
    //
    // Game_Battler.prototype.removeStatesByDamage = function() {
    //     this.states().forEach(function(state) {
    //         if (state.removeByDamage && Math.randomInt(100) < state.chanceByDamage) {
    //             this.removeState(state.id);
    //         }
    //     }, this);
    // };
    //
    // Game_Battler.prototype.removeStatesAuto = function(timing) {
    //     this.states().forEach(function(state) {
    //         if (this.isStateExpired(state.id) && state.autoRemovalTiming === timing) {
    //             this.removeState(state.id);
    //         }
    //     }, this);
    // };
    //
    // Game_Battler.prototype.removeState = function(stateId) {
    //     if (this.isStateAffected(stateId)) {
    //         if (stateId === this.deathStateId()) {
    //             this.revive();
    //         }
    //         this.eraseState(stateId);
    //         this.refresh();
    //         this._result.pushRemovedState(stateId);
    //     }
    // };
    //
    // Game_Battler.prototype.addState = function(stateId) {
    //     if (this.isStateAddable(stateId)) {
    //         if (!this.isStateAffected(stateId)) {
    //             this.addNewState(stateId);
    //             this.refresh();
    //         }
    //         this.resetStateCounts(stateId);
    //         this._result.pushAddedState(stateId);
    //     }
    // };










    Script v1.00

    Spoiler/*=============================================================================
    * Gilgamar - State Common Event
    * By Gilgamar
    * G_StateCE.js
    * Version: 1.00
    * Free for commercial and non commercial use.
    *=============================================================================*/

    var Imported = Imported || {};
    Imported.G_StateCE = true;

    var StateCE = {};

    /*:
    * @plugindesc v1.00 Enable state common events.
    * @author Gilgamar
    *
    * @help
    * ============================================================================
    * Introduction
    * ============================================================================
    * Enables state add/remove common events via notetags. Ex:
    *
    * <StateCE Event: 1 onadd>
    * <StateCE Event: 2 onremove>
    *
    * The precedling lines will run common event ID 001 on state add and common
    * event ID 002 on state removal for the state tagged.
    *
    * ============================================================================
    * Changelog
    * ============================================================================
    * Version 1.00:
    * - Enables state add/remove common events via notetags
    */

    //=============================================================================
    // Notetags
    //=============================================================================

    StateCE.DataManager_isDatabaseLoaded = DataManager.isDatabaseLoaded;
    DataManager.isDatabaseLoaded = function() {
        if (!StateCE.DataManager_isDatabaseLoaded.call(this)) return false;
        DataManager.processSTATECENotetags1($dataStates);
        return true;
    };

    DataManager.processSTATECENotetags1 = function(group) {
        // Check if function called more than once
        if (DataManager.processSTATECENotetags1.calledTimes++ > 1) return;

        var note1 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONADD)>/i;
        var note2 = /<(?:STATECE EVENT):[ ](\d+)[ ](ONREMOVE)>/i;

        for (var n = 1; n < group.length; n++) {
            var obj = group[n];
            var notedata = obj.note.split(/[\r\n]+/);
            // console.log(notedata)
            obj.commonEvents = [];
            for (var i = 0; i < notedata.length; i++) {
                var line = notedata;
                if (line.match(note1)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onadd'
                    });
                } else if (line.match(note2)) {
                    obj.commonEvents.push({
                        eventId: parseInt(RegExp.$1),
                        occurs: 'onremove'
                    });
                }
            }
        }
        console.log(group)

    };
    DataManager.processSTATECENotetags1.calledTimes = 0;

    //=============================================================================
    // StateCE Functions
    //=============================================================================

    StateCE.changeState = function(stateId, occurs) {
        var state = $dataStates[stateId];
        for (var i = 0; i < state.commonEvents.length; i++){
            var commonEvent = state.commonEvents;
            if (commonEvent.occurs === occurs) {
                console.log(commonEvent)
                $gameTemp.reserveCommonEvent(commonEvent.eventId);
            }
        }
    }
    StateCE.onAdd    = function(stateId) {this.changeState(stateId, 'onadd')}
    StateCE.onRemove = function(stateId) {this.changeState(stateId, 'onremove')}

    //=============================================================================
    // RPG Maker Overrides
    //=============================================================================

    StateCE.Game_Battler_removeState = Game_Battler.prototype.removeState;
    Game_Battler.prototype.removeState = function(stateId) {
        StateCE.Game_Battler_removeState.call(this, stateId);
        console.log('removing state')
        StateCE.onRemove(stateId);
    };

    StateCE.Game_Battler_addState = Game_Battler.prototype.addState;
    Game_Battler.prototype.addState = function(stateId) {
        StateCE.Game_Battler_addState.call(this, stateId);
        console.log('adding state')
        StateCE.onAdd(stateId);
    };

    // Game_Battler.prototype.removeState = function(stateId) {
    //     if (this.isStateAffected(stateId)) {
    //         if (stateId === this.deathStateId()) {
    //             this.revive();
    //         }
    //         this.eraseState(stateId);
    //         this.refresh();
    //         this._result.pushRemovedState(stateId);
    //     }
    // };
    //
    // Game_Battler.prototype.addState = function(stateId) {
    //     if (this.isStateAddable(stateId)) {
    //         if (!this.isStateAffected(stateId)) {
    //             this.addNewState(stateId);
    //             this.refresh();
    //         }
    //         this.resetStateCounts(stateId);
    //         this._result.pushAddedState(stateId);
    //     }
    // };










    Terms of use and Credits


            Free to use in any project.


            Credit me as Gilgamar if you use this!


            Thanks to Tsukihime also.



    本贴来自国际rpgmaker官方论坛作者:gilgamar处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/state-common-events.57853/
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-8-1 08:36 , Processed in 0.149327 second(s), 51 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表