设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1754|回复: 1
打印 上一主题 下一主题

[已经解决] 如何用脚本将两个事件位置互换?

 关闭 [复制链接]

Lv3.寻梦者

梦石
0
星屑
4432
在线时间
1912 小时
注册时间
2010-12-21
帖子
2365
跳转到指定楼层
1
发表于 2011-10-5 15:11:47 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
考虑过用事件但是非常不方便代入事件ID
于是求教一下互换事件位置的话,应该写上什么脚本的说?
绿坝娘素材库企划

素材库获取方法:暂时中止,需求者私聊。

Lv1.梦旅人

梦石
0
星屑
50
在线时间
543 小时
注册时间
2009-7-13
帖子
63
2
发表于 2011-10-5 15:18:01 | 只看该作者
本帖最后由 nanaka 于 2011-10-5 15:31 编辑
  1. $game_map.events[事件id].moveto(x,y)
复制代码
---------------------------------------------------------------------
  1. module Swap_Event
  2.   module Command
  3.     def swap_event(id1,id2)
  4.       swapx = $game_map.events[id2].x
  5.       swapy = $game_map.events[id2].y
  6.       $game_map.events[id2].moveto($game_map.events[id1].x,$game_map.events[id1].y)
  7.       $game_map.events[id1].moveto(swapx,swapy)
  8.     end
  9.   end
  10. end

  11. class Game_Interpreter
  12.   include Swap_Event::Command
  13. end


复制代码
插进去在事件脚本里写swap_event(事件id1,事件id2)就行了
退屈すぎ…
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2025-1-8 04:57

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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