在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP网站 → PHPRPG游戏引擎源码

PHPRPG游戏引擎源码

PHP网站

下载此实例
  • 开发语言:PHP
  • 实例大小:0.42M
  • 下载次数:13
  • 浏览次数:343
  • 发布时间:2022-01-06
  • 实例类别:PHP网站
  • 发 布 人:ttina
  • 文件格式:.zip
  • 所需积分:20
 相关标签: php rp Pr hp 游戏

实例介绍

【实例简介】PHPRPG游戏引擎源码
【实例截图】from clipboard

【核心代码】

├── phpRPG-0.8.0
│   ├── HISTORY
│   ├── INSTALL
│   ├── LICENSE
│   ├── README
│   ├── TODO
│   ├── bin
│   │   ├── admin
│   │   │   ├── character
│   │   │   │   ├── delete-attribute.js.php
│   │   │   │   ├── delete-character.js.php
│   │   │   │   ├── gen-attrib-list.js.php
│   │   │   │   ├── load-character.js.php
│   │   │   │   ├── load-image-set.js.php
│   │   │   │   ├── save-character.js.php
│   │   │   │   └── swap-character-image.js.php
│   │   │   ├── item
│   │   │   │   ├── delete-attribute.js.php
│   │   │   │   ├── delete-event.js.php
│   │   │   │   ├── delete-items.js.php
│   │   │   │   ├── gen-attrib-list.js.php
│   │   │   │   ├── gen-event-list.js.php
│   │   │   │   ├── gen-icon-images.js.php
│   │   │   │   ├── gen-merg-images.js.php
│   │   │   │   ├── load-image-set.js.php
│   │   │   │   ├── load-item.js.php
│   │   │   │   ├── save-event.js.php
│   │   │   │   ├── save-item.js.php
│   │   │   │   └── swap-item-image.js.php
│   │   │   ├── map
│   │   │   │   ├── admin-load-map.js.php
│   │   │   │   ├── admin-move.js.php
│   │   │   │   ├── admin-refresh-locs.js.php
│   │   │   │   ├── define-location.js.php
│   │   │   │   ├── gen-map-list.js.php
│   │   │   │   ├── load-link.js.php
│   │   │   │   ├── load-map.js.php
│   │   │   │   ├── load-terrain.js.php
│   │   │   │   ├── loc-pick-load-map.js.php
│   │   │   │   ├── loc-pick-move.js.php
│   │   │   │   ├── loc-pick-refresh-locs.js.php
│   │   │   │   ├── new-map.js.php
│   │   │   │   ├── refresh-locs.js.php
│   │   │   │   ├── update-link.js.php
│   │   │   │   └── update-map.js.php
│   │   │   ├── script
│   │   │   │   ├── delete-script.js.php
│   │   │   │   ├── load-script.js.php
│   │   │   │   └── save-script.js.php
│   │   │   └── tile
│   │   │       ├── delete-attribute.js.php
│   │   │       ├── delete-tile.js.php
│   │   │       ├── gen-attrib-list.js.php
│   │   │       ├── gen-event-list.js.php
│   │   │       ├── gen-image-list.js.php
│   │   │       ├── gen-terrain-list.js.php
│   │   │       ├── load-image-set.js.php
│   │   │       ├── load-terrain.js.php
│   │   │       ├── load-tile.js.php
│   │   │       ├── new-tile.js.php
│   │   │       ├── save-event.js.php
│   │   │       ├── save-tile.js.php
│   │   │       └── swap-tile-image.js.php
│   │   ├── load-dropped-items.js.php
│   │   ├── load-equiped.js.php
│   │   ├── load-inventory.js.php
│   │   ├── load-overview.js.php
│   │   ├── load-players.js.php
│   │   ├── load-qstats.js.php
│   │   ├── load-stats.js.php
│   │   └── move.js.php
│   ├── characters.php
│   ├── create-character.php
│   ├── doc
│   │   ├── class.overlib_1.12.zip
│   │   ├── phprpg_db_character.txt
│   │   ├── phprpg_db_items.txt
│   │   ├── phprpg_db_maps.txt
│   │   ├── phprpg_design.txt
│   │   ├── phprpg_outline.txt
│   │   └── phprpg_standards.txt
│   ├── etc
│   │   ├── db.conf.php
│   │   ├── init.php
│   │   ├── local.conf.php
│   │   ├── map.conf.php
│   │   └── runtime.conf.php
│   ├── favicon.ico
│   ├── index.php
│   ├── items.php
│   ├── lib
│   │   ├── action.lib.php
│   │   ├── admin
│   │   │   ├── character
│   │   │   │   ├── attribute_editor.php
│   │   │   │   ├── character_editor.php
│   │   │   │   ├── colour_editor.php
│   │   │   │   ├── image_scan.php
│   │   │   │   ├── image_set_editor.php
│   │   │   │   ├── image_uploader.php
│   │   │   │   ├── search_results.php
│   │   │   │   └── user_editor.php
│   │   │   ├── item
│   │   │   │   ├── attribute_editor.php
│   │   │   │   ├── image_scan.php
│   │   │   │   ├── image_set_editor.php
│   │   │   │   ├── image_uploader.php
│   │   │   │   ├── item_editor.bak.php
│   │   │   │   ├── item_editor.php
│   │   │   │   ├── script_selector.php
│   │   │   │   └── search_results.php
│   │   │   ├── map
│   │   │   │   └── map_editor.php
│   │   │   ├── script
│   │   │   │   ├── script_editor.php
│   │   │   │   └── search_results.php
│   │   │   └── tile
│   │   │       ├── attribute_editor.php
│   │   │       ├── image_scan.php
│   │   │       ├── image_set_editor.php
│   │   │       ├── image_uploader.php
│   │   │       ├── script_selector.php
│   │   │       ├── terrain_editor.php
│   │   │       └── tile_editor.php
│   │   ├── attributes.lib.php
│   │   ├── auth.lib.php
│   │   ├── character.lib.php
│   │   ├── context.lib.php
│   │   ├── display.lib.php
│   │   ├── error.lib.php
│   │   ├── gettext.lib.php
│   │   ├── image.lib.php
│   │   ├── item.lib.php
│   │   ├── item_info.lib.php
│   │   ├── js
│   │   │   ├── character.js.php
│   │   │   ├── item.js.php
│   │   │   ├── loc-pick.js.php
│   │   │   ├── map.js.php
│   │   │   ├── md5.js
│   │   │   ├── overlib.js
│   │   │   ├── script.js.php
│   │   │   ├── scriptload.js
│   │   │   └── tile.js.php
│   │   ├── location.lib.php
│   │   ├── map.lib.php
│   │   ├── mysql.lib.php
│   │   ├── script.lib.php
│   │   ├── sprite.lib.php
│   │   ├── system.lib.php
│   │   ├── template.lib.php
│   │   ├── terrain.lib.php
│   │   ├── tile.lib.php
│   │   ├── time.lib.php
│   │   └── user.lib.php
│   ├── logout.php
│   ├── maps.php
│   ├── online.php
│   ├── options.php
│   ├── overview.php
│   ├── permfix.sh
│   ├── register.php
│   ├── scripts.php
│   ├── setup
│   │   ├── create.sql.php
│   │   ├── data.sql.php
│   │   ├── index.php
│   │   └── upgrade
│   │       └── 0.3.0-0.5.0.sql.php
│   ├── share
│   │   ├── images
│   │   │   ├── bar_blue.png
│   │   │   ├── bar_empty.png
│   │   │   ├── bar_green.png
│   │   │   ├── bar_orange.png
│   │   │   ├── bar_red.png
│   │   │   ├── bar_side.png
│   │   │   ├── bar_yellow.png
│   │   │   ├── default_background.png
│   │   │   ├── default_item_icon.png
│   │   │   ├── default_item_merg.png
│   │   │   ├── default_portrait.png
│   │   │   ├── default_sprite.png
│   │   │   ├── default_tile.png
│   │   │   ├── favicon.ico
│   │   │   ├── finger.png
│   │   │   ├── gold.png
│   │   │   ├── items
│   │   │   │   ├── icon
│   │   │   │   │   ├── cargo-pants.png
│   │   │   │   │   ├── plain-shirt.png
│   │   │   │   │   └── shoes.png
│   │   │   │   └── merg
│   │   │   │       ├── cargo-pants.png
│   │   │   │       ├── plain-shirt.png
│   │   │   │       └── shoes.png
│   │   │   ├── mask_error.png
│   │   │   ├── mask_success.png
│   │   │   ├── mask_trans.png
│   │   │   ├── mysql.png
│   │   │   ├── php.png
│   │   │   ├── phprpg.png
│   │   │   ├── sprites
│   │   │   │   ├── body
│   │   │   │   │   ├── human-001.png
│   │   │   │   │   └── human-002.png
│   │   │   │   ├── hair
│   │   │   │   │   ├── hair-000.png
│   │   │   │   │   ├── hair-001.png
│   │   │   │   │   └── hair-002.png
│   │   │   │   ├── portrait
│   │   │   │   ├── tail
│   │   │   │   └── wings
│   │   │   ├── tiles
│   │   │   │   ├── coast-e.png
│   │   │   │   ├── coast-n.png
│   │   │   │   ├── coast-ne.png
│   │   │   │   ├── coast-nw.png
│   │   │   │   ├── coast-s.png
│   │   │   │   ├── coast-se.png
│   │   │   │   ├── coast-sw.png
│   │   │   │   ├── coast-w.png
│   │   │   │   ├── flagstone.gif
│   │   │   │   ├── flagstone1.gif
│   │   │   │   ├── flagstone2.gif
│   │   │   │   ├── flagstone3.gif
│   │   │   │   ├── forest.png
│   │   │   │   ├── grass.png
│   │   │   │   ├── house-road-s.png
│   │   │   │   ├── mountain-bottom-left.png
│   │   │   │   ├── mountain-bottom-right.png
│   │   │   │   ├── mountain-centre-left-back.png
│   │   │   │   ├── mountain-centre-left.png
│   │   │   │   ├── mountain-centre-right-back.png
│   │   │   │   ├── mountain-centre-right.png
│   │   │   │   ├── mountain-left-back.png
│   │   │   │   ├── mountain-left.png
│   │   │   │   ├── mountain-right-back.png
│   │   │   │   ├── mountain-right.png
│   │   │   │   ├── mountain-top-left.png
│   │   │   │   ├── mountain-top-right.png
│   │   │   │   ├── road-cr.png
│   │   │   │   ├── road-ew.png
│   │   │   │   ├── road-fe.png
│   │   │   │   ├── road-fn.png
│   │   │   │   ├── road-fs.png
│   │   │   │   ├── road-fw.png
│   │   │   │   ├── road-ne.png
│   │   │   │   ├── road-ns.png
│   │   │   │   ├── road-nw.png
│   │   │   │   ├── road-se.png
│   │   │   │   ├── road-sw.png
│   │   │   │   ├── water.png
│   │   │   │   └── wood.png
│   │   │   ├── time_1_dawn.png
│   │   │   ├── time_1_day.png
│   │   │   ├── time_1_dusk.png
│   │   │   ├── time_1_night.png
│   │   │   ├── time_2_dawn.png
│   │   │   ├── time_2_day.png
│   │   │   ├── time_2_dusk.png
│   │   │   ├── time_2_night.png
│   │   │   ├── time_3_dawn.png
│   │   │   ├── time_3_day.png
│   │   │   ├── time_3_dusk.png
│   │   │   ├── time_3_night.png
│   │   │   ├── time_4_dawn.png
│   │   │   ├── time_4_day.png
│   │   │   ├── time_4_dusk.png
│   │   │   ├── time_4_night.png
│   │   │   └── x.png
│   │   ├── locale
│   │   │   └── fr_fr
│   │   │       └── LC_MESSAGES
│   │   │           ├── phprpg.mo
│   │   │           └── phprpg.po
│   │   ├── log
│   │   │   └── error.log
│   │   └── templates
│   │       └── phantasy
│   │           ├── admin_character_attrib.tpl
│   │           ├── admin_character_attrib_new.tpl
│   │           ├── admin_character_colour.tpl
│   │           ├── admin_character_image.tpl
│   │           ├── admin_character_portrait.tpl
│   │           ├── admin_character_search.tpl
│   │           ├── admin_character_user.tpl
│   │           ├── admin_characters.tpl
│   │           ├── admin_item.tpl
│   │           ├── admin_item_attrib.tpl
│   │           ├── admin_item_attrib_new.tpl
│   │           ├── admin_item_event.tpl
│   │           ├── admin_item_image.tpl
│   │           ├── admin_item_image_scan.tpl
│   │           ├── admin_item_image_sets.tpl
│   │           ├── admin_item_image_upload.tpl
│   │           ├── admin_item_search.tpl
│   │           ├── admin_items_script_select.tpl
│   │           ├── admin_maps.tpl
│   │           ├── admin_menu.tpl
│   │           ├── admin_script.tpl
│   │           ├── admin_script_search.tpl
│   │           ├── admin_tile_attrib.tpl
│   │           ├── admin_tile_attrib_new.tpl
│   │           ├── admin_tile_event.tpl
│   │           ├── admin_tiles.tpl
│   │           ├── admin_tiles_image_scan.tpl
│   │           ├── admin_tiles_image_sets.tpl
│   │           ├── admin_tiles_image_upload.tpl
│   │           ├── admin_tiles_images.tpl
│   │           ├── admin_tiles_script_select.tpl
│   │           ├── admin_tiles_terrain.tpl
│   │           ├── auth_character_select.tpl
│   │           ├── auth_login.tpl
│   │           ├── auth_logout.tpl
│   │           ├── context_inventory.tpl
│   │           ├── create_character.tpl
│   │           ├── create_character_customizations.tpl
│   │           ├── create_character_portrait.tpl
│   │           ├── create_character_stats.tpl
│   │           ├── display_border.tpl
│   │           ├── display_dropped_items.tpl
│   │           ├── display_inventory.tpl
│   │           ├── display_navigation.tpl
│   │           ├── display_overview.tpl
│   │           ├── display_player_equip.tpl
│   │           ├── display_player_qstats.tpl
│   │           ├── display_player_stats.tpl
│   │           ├── display_players.tpl
│   │           ├── display_time.tpl
│   │           ├── display_weather.tpl
│   │           ├── images
│   │           │   ├── box_bg.png
│   │           │   ├── equip_bg.png
│   │           │   ├── phantasy_bot.png
│   │           │   ├── phantasy_top.png
│   │           │   ├── quote_bt.png
│   │           │   ├── quote_dl.png
│   │           │   ├── quote_dr.png
│   │           │   ├── quote_lt.png
│   │           │   ├── quote_rt.png
│   │           │   ├── quote_tp.png
│   │           │   ├── quote_ul.png
│   │           │   ├── quote_ur.png
│   │           │   └── register.png
│   │           ├── includes
│   │           │   └── page.inc.php
│   │           ├── loc_pick.tpl
│   │           ├── master.tpl
│   │           ├── master_meta.tpl
│   │           ├── master_style.tpl
│   │           ├── popup.tpl
│   │           ├── register.tpl
│   │           ├── register_activation.tpl
│   │           ├── register_receipt.tpl
│   │           ├── user_local.tpl
│   │           ├── user_menu.tpl
│   │           ├── user_online.tpl
│   │           ├── user_options.tpl
│   │           ├── user_overview.tpl
│   │           ├── user_status.tpl
│   │           └── user_system.tpl
│   ├── status.php
│   ├── system.php
│   ├── tiles.php
│   └── tmp
│       └── readme.txt
└── 好例子网_phpRPG-0.8.0.zip

41 directories, 327 files


标签: php rp Pr hp 游戏

实例下载地址

PHPRPG游戏引擎源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警