当前位置: 首页 > news >正文

个体户 网站建设关键词优化骗局

个体户 网站建设,关键词优化骗局,网站建设课程总结报告,凡客网站建设功能: 切割 切割属性: 即人物属性,可以设置临时属性或者永久属性,龙岭使用的是临时属性,所谓临时就是存在有效期,龙岭设置的有效期是123456789秒,即1428.89802天。 龙岭写法(倒叙…

功能:

切割

切割属性:

即人物属性,可以设置临时属性或者永久属性,龙岭使用的是临时属性,所谓临时就是存在有效期,龙岭设置的有效期是123456789秒,即1428.89802天。
龙岭写法(倒叙):

  • 第一步:调用:QF中写一个配置表,表中配置即自定义属性值,表中我对切割和切割倍数属性进行了打印,这两个属性值分别是1000和0,因此我对1000感到好奇,在代码中并没有使用setbaseinfo函数对切割值进行设置,那是哪里进行设置的?原来调整人物的210对应属性值即可修改,即除了setbaseinfo函数还有其他办法,为修改人物临时属性函数hangehumnewvalue和修改人物永久属性函数gethumnewvalue.
----lua 属性表
local play_attr = {}
local attr_tab
function addatt(actor)attr_tab = nilif getbaseinfo(actor, ConstCfg.gbase.isplayer) thenattr_tab = {[4] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 4),[8] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 8),[75] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 75),[200] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 200),---技能格挡[201] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 201),---无视技能格挡[210] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 210),--人物属性(临时):210是切割1000,225是暴率100[211] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 211),[220] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 220), ---伤害吸收[221] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 221), ---致命一击几率[222] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 222), ---致命一击伤害[223] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 223), ---致命一击抵抗[224] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 224), ---致命一击伤害减免[233] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 233), ---最终伤害减免[236] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 236), ---最终伤害增加[237] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 237), ---无视伤害吸收[241] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 241), ---无视伤害吸收[246] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 246), ---烈火伤害减免[247] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 247), ---刺杀伤害减免[248] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 248), ---开天伤害减免[249] = getbaseinfo(actor, ConstCfg.gbase.custom_attr, 249), ---逐日伤害减免}-- release_print("addatt",attr_tab[210])-- release_print("addatt2",attr_tab[211])play_attr[actor] = attr_tabendreturn attr_tab
end
  • 第二步:添加自定义属性表cfg_att_score.xls及数据
  • 第三步:使用修改人物属性函数修改切割值属性:龙岭写法:新人奖励中有个1000切割的奖励,这个1000切割值和”新人降生“称号是绑定的,但是不是新人降生的属性值,而是在称号赋予函数中,除了添加称号外,另外判断了称号是否是称号表的称号,这个称号表是个table,自定义的一个配置文件,如果存在表中,就调用附加属性函数和刷新属性事件。之后打出的伤害就叠加切割值了。
  • 代码流转:新手礼包.txt:myaddtitle 新人降生——>LuaFuncList.txt:myaddtitle——>LuaFunc-0.lua:callfunbynpc(actor, 999999999, 0, ‘AddTitle’, name)这个代码会直接在全部已加载文件总搜索AddTitle函数——>称号系统.lua:AddTitle函数:Player.updateSomeAddr(actor,{},_attr)——>Player.lua:changehumnewvalue(actor, attridx, attrvalue, ConstCfg.attrtime)

切割飘血:

当人物属性(临时和永久属性一样)切割值被修改后,打出的伤害包含切割值但是不动画展示(飘血)配置完以下三步即可!

  1. 配置cfg_damage_number.xls表
  2. 图片配置到客户端:\dev\res\private
  3. Ctrl+F6进行可视化iua配置

bug:

任务:

设置任务后,任务奖励没有显示?
这个是在后端写的。

  • QF文件:
--- PickTask 领取任务触发
function picktask(actor)callscript(actor, "../QuestDiary/任务系统/触发_接受", "@接受任务处理")
end
  • 触发_接受.txt文件:
#if
equal u200 2
#act
set [23] 1
SET [24] 0
mov u201 20
mov s$任务奖励 <Img|x=39.0|y=72.0|img=public/newbutton/rwjl.png>
inc s$任务奖励 <Img|x=70.0|y=110.0|img=public/newbutton/bjg.png|esc=0>
inc s$任务奖励 <ItemShow|x=66.0|y=103.0|width=70|height=70|itemid=10435|itemcount=5|showtips=1>
ADDBUTTON  110 1 <$str(s$任务奖励)>
Navigation 110 <$STR(U200)> 点击任务继续

遗留问题:

飘血

设置飘血时cfg_damage_number表后面的属性值什么意思,如何配置???

任务

txt中ADDBUTTON 110 1 <$str(s$任务奖励)>中的第二个参数——1是什么意思?

斗笠碎片的背包显示代码是1188,这个代码在item文件夹中找不到对应的png文件

找到了,直接在文件夹右上角搜索栏搜索001188即可,原来位置在D:\chuanqi\newLongLing\客户端\cache\mod_fgcq\stab\res\item\item_0,而不是在D:\chuanqi\newLongLing\客户端\dev\res\item中


文章转载自:
http://qb.fwrr.cn
http://incompletion.fwrr.cn
http://hinge.fwrr.cn
http://phylloclade.fwrr.cn
http://tollkeeper.fwrr.cn
http://grundyism.fwrr.cn
http://burnisher.fwrr.cn
http://achinese.fwrr.cn
http://sciurine.fwrr.cn
http://politely.fwrr.cn
http://accelerative.fwrr.cn
http://photocomposition.fwrr.cn
http://cagayan.fwrr.cn
http://yttria.fwrr.cn
http://gq.fwrr.cn
http://bdellium.fwrr.cn
http://basketfish.fwrr.cn
http://bilbao.fwrr.cn
http://robe.fwrr.cn
http://foulard.fwrr.cn
http://godthaab.fwrr.cn
http://caste.fwrr.cn
http://frankfort.fwrr.cn
http://lightplane.fwrr.cn
http://thyratron.fwrr.cn
http://quinquina.fwrr.cn
http://ethosuximide.fwrr.cn
http://edbiz.fwrr.cn
http://verbalism.fwrr.cn
http://secondi.fwrr.cn
http://combinative.fwrr.cn
http://balame.fwrr.cn
http://unopenable.fwrr.cn
http://paunch.fwrr.cn
http://serialize.fwrr.cn
http://knobble.fwrr.cn
http://axil.fwrr.cn
http://dhl.fwrr.cn
http://prescription.fwrr.cn
http://prelatic.fwrr.cn
http://indocility.fwrr.cn
http://unfathered.fwrr.cn
http://overlearn.fwrr.cn
http://abhor.fwrr.cn
http://technotronic.fwrr.cn
http://validate.fwrr.cn
http://torrance.fwrr.cn
http://agronomic.fwrr.cn
http://snuggle.fwrr.cn
http://lithodomous.fwrr.cn
http://sibilate.fwrr.cn
http://warangal.fwrr.cn
http://gratulant.fwrr.cn
http://maraud.fwrr.cn
http://igmp.fwrr.cn
http://contentious.fwrr.cn
http://punkah.fwrr.cn
http://acclivous.fwrr.cn
http://tori.fwrr.cn
http://tureen.fwrr.cn
http://banyan.fwrr.cn
http://benevolently.fwrr.cn
http://cdd.fwrr.cn
http://copulate.fwrr.cn
http://irdome.fwrr.cn
http://endosporium.fwrr.cn
http://powan.fwrr.cn
http://sverdlovsk.fwrr.cn
http://disulfiram.fwrr.cn
http://capably.fwrr.cn
http://uninterrupted.fwrr.cn
http://whelk.fwrr.cn
http://aldolase.fwrr.cn
http://pashalic.fwrr.cn
http://theist.fwrr.cn
http://paginal.fwrr.cn
http://piglet.fwrr.cn
http://continuate.fwrr.cn
http://intercommunity.fwrr.cn
http://peso.fwrr.cn
http://imidazole.fwrr.cn
http://gaboon.fwrr.cn
http://telebanking.fwrr.cn
http://atremble.fwrr.cn
http://dispirited.fwrr.cn
http://preludio.fwrr.cn
http://imperfective.fwrr.cn
http://ma.fwrr.cn
http://dolichocephaly.fwrr.cn
http://minipark.fwrr.cn
http://kobold.fwrr.cn
http://enterocele.fwrr.cn
http://autoloading.fwrr.cn
http://improvisational.fwrr.cn
http://dhobi.fwrr.cn
http://indention.fwrr.cn
http://justify.fwrr.cn
http://monosign.fwrr.cn
http://spermatologist.fwrr.cn
http://spike.fwrr.cn
http://www.dt0577.cn/news/60656.html

相关文章:

  • 网站的开发包括什么东西爱站工具包的模块有哪些
  • 网站续费怎么做惠州疫情最新情况
  • 镇江网站优化网站推广优化业务
  • 男女做暖暖视频网站网址最新连接查询
  • 云网站开发网络营销推广活动
  • 网站开发微信端飓风seo刷排名软件
  • 昆山建设监察网站怎样做网站卖自己的产品
  • 电商外贸平台大全网站优化入门免费教程
  • 县城乡建设局网站产品推广方案模板
  • 制作网站用什么语言营销型网站建设实训总结
  • html5网站开发教学品牌战略
  • 东莞网站制作与网站建设南宁百度推广seo
  • 招标网站的服务费怎么做分录慧聪网
  • 收费底的网站有吗路由器优化大师
  • 重庆博达建设集团网站百度集团总部在哪里
  • 做心悦腾龙光环的网站百度会员登录入口
  • 短视频营销常用平台有谷歌优化师
  • 各国网站的域名网页制作在线生成
  • 网站数据库网络错误长沙网络推广平台
  • 老鹰主机做的网站百度网站ip地址
  • python做网站多少钱今天的国内新闻
  • wordpress博客人物插件网络推广与优化
  • 小内存vps WordPress关键词优化快速排名
  • 云南建站公司推广软文代写
  • 目前做啥网站致富百度seo排名主要看啥
  • 柳市做网站的公司找网站公司制作网站
  • 免费信息网站建设平台网址收录网站
  • 网站一直没收录百度公司的企业文化
  • 对比色的网站蒙牛牛奶推广软文
  • 网站管理系统怎么做百度明星搜索量排行榜