Board logo

标题: [提问] 求助一个弄了好久没弄出来的效果 [打印本页]

作者: orochi0531    时间: 2016-4-28 09:58     标题: 求助一个弄了好久没弄出来的效果

复制内容到剪贴板
代码:
NL.RegPartyEvent(nil,"MyPartyEvent");
--Delegate.RegInit("Mypart_Init");

function MyPartyEvent(CharIndex, TargetCharIndex, Type)
        Char.SetWindowTalkedEvent(nil, "MypartM_WindowTalked", CharIndex);
        if(Type==0)then
                local msg = "\\n\\n"..Char.GetData(CharIndex,%对象_名字%).." 申请加入您的队伍。\\n\\n是否同意其入队申请呢?\\n\\n同意入队请选择『是』,拒绝入队请选择『否』。\\n"
                local addpartymsg = NLG.ShowWindowTalked(TargetCharIndex,CharIndex,%窗口_信息框%,%按钮_是否%,1,msg);
                --MypartM_sg(Mypart_index, TargetCharIndex);
                --MypartM_WindowTalked(CharIndex, TargetCharIndex,1,%按钮_否%,msg);
                return 0;
        end
        return 1;
end


-- function MypartM_sg(_NpcIndex,_PlayerIndex)


                -- local msg = "\\n\\n"..Char.GetData(_PlayerIndex,%对象_名字%).." 申请加入您的队伍。\\n\\n是否同意其入队申请呢?\\n\\n同意入队请选择『是』,拒绝入队请选择『否』。\\n"
                -- local addpartymsg = NLG.ShowWindowTalked(_PlayerIndex,_NpcIndex,%窗口_信息框%,%按钮_是否%,1,msg);
                -- return;
-- end


function MypartM_WindowTalked(_me,_tome,_seqno,_select,_data)
        --NLG.SystemMessage(_me,_select);
        if(tonumber(_seqno)==1 and tonumber(_select)==%按钮_否% and _data~="")then
                NLG.SystemMessage(_me,"队长拒绝了您的入队申请!");
                return;
        end
        --Char.JoinParty(_me,_tome);

        return;
end

-- function initmypart_Init(index)
        -- return 1;
-- end

-- function Mypart_create()
        -- if (Mypart_index == nil) then
                -- Mypart_index = NL.CreateNpc(nil, "initmypart_Init");
                -- Char.SetData(Mypart_index,%对象_形象%,10414);
                -- Char.SetData(Mypart_index,%对象_原形%,10414);
                -- Char.SetData(Mypart_index,%对象_X%,18);
                -- Char.SetData(Mypart_index,%对象_Y%,1);
                -- Char.SetData(Mypart_index,%对象_地图%,777);
                -- Char.SetData(Mypart_index,%对象_方向%,4);
                -- Char.SetData(Mypart_index,%对象_名字%,"组队离队NPC");
                -- NLG.UpChar(Mypart_index);
                ----Char.SetTalkedEvent(nil, "MypartM_sg", Mypart_index);
                -- Char.SetWindowTalkedEvent(nil, "MypartM_WindowTalked", Mypart_index);
        -- end
-- end
-- function Mypart_Init()
        -- Mypart_create();
       
-- end
就是点组队后,队长会弹出是否同意组队的对话框,但是,我弄了好久没解决如何触发队长的选择,用npc的方式触发失败,至今没解决,希望知道的帮忙解决下啊。截图在我另一个帖子有发过的。
作者: jeff10363    时间: 2016-4-28 10:30     标题: 回复 阁楼 的帖子

剛想想 因該是寫的順序 跟對象錯亂  我讀到後面已經分不出哪個參數是哪個參數) O' \; x. |4 T
本來想說可以用 全域變數驗證 可是我在上班 沒辦法測試XD魔力私服,最新魔力宝贝私服技术交流0 B" u! J4 q1 B0 ~

5 B* r: ^2 O6 r" z& t! m' Z: k你看這樣 可不可以妖城在线论坛$ R* S* x, ?# V2 M% Q% W0 J5 q7 j
—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート" o7 p4 _; F5 A' [( @7 y8 ?
大概看一下,不能實際測試=A=
复制内容到剪贴板
代码:
---產生組隊處發    自己  對方  自己鍵值



function MyPartyEvent(CharIndex, TargetCharIndex, Type)

--如果自己傳達 +入組隊
        if(Type==0)then


--讓對方執行NPC窗口
----------------NPC窗口 (NPC本體,觸發者)
                MypartM_sg(Mypart_index,TargetCharIndex);
                return 0;
        end
        return 1;
end



--NPC窗口   抓出NPC本身.觸發者  這邊觸發者 變成 被要求組隊的那個人
function MypartM_sg(_NpcIndex,_PlayerIndex)

                local msg = "\\n\\n"..Char.GetData(CharIndex,%对象_名字%).." 申请加入您的队伍。\\n\\n是否同意其入队申请呢?\\n\\n同意入队请选择『是』,拒绝入队请选择『否』。\\n"


                NLG.ShowWindowTalked(_PlayerIndex,_NpcIndex,%窗口_信息框%,%按钮_是否%,1,msg);

end




--NPC AI行為模式  (_NpcIndex,_PlayerIndex,_SeqNo,_Select,_data)



--這裡怪怪的~~~ _me 因該為NPC本身吧,   CharIndex為最初觸發者 要求組隊的人 不知道可不可傳達到這裡

function MypartM_WindowTalked(_me,_tome,_seqno,_select,_data)

--窗口
        if(tonumber(_seqno)==1 and tonumber(_select)==%按钮_否% and _data~="")then
                --NLG.SystemMessage(_me,"队长拒绝了您的入队申请!"); <--對象好像不正確

                NLG.SystemMessage(CharIndex,"队长拒绝了您的入队申请!");--CharIndex
                return;
        end


        Char.JoinParty(CharIndex,_tome);

        return;
end
[ 本帖最后由 jeff10363 于 2016-4-28 11:00 编辑 ]
作者: 易凡    时间: 2016-4-28 13:23

这种需要加一个临时表来存储# G3 }" L) _* L$ v: F" f3 n

" l$ ]( K, j: ^" V$ g' e, r% {" `—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート否则Char.JoinParty(CharIndex,_tome);函数会反复触发组队事件。
作者: 易凡    时间: 2016-4-28 13:43

复制内容到剪贴板
代码:
--组队事件
--_player:主动组队的玩家
--_toplayer:被组队的玩家
--_type:0:加入组队,1:离开组队

tbl_party_check = {};

function RPartyEvent(_player,_toplayer,_type)
        if (tbl_party_check[Char.GetData(_player,%对象_账号%)] ~= nil) then
                if (tbl_party_check[Char.GetData(_player,%对象_账号%)] == _toplayer) then
                        tbl_party_check[Char.GetData(_player,%对象_账号%)] = nil;
                        return 1;
                end
        end
        if (_type==0) then
                local msg = "\\n\\n"..Char.GetData(_player,%对象_名字%).." 申请加入您的队伍。\\n\\n是否同意其入队申请呢?\\n\\n同意入队请选择『是』,拒绝入队请选择『否』。\\n";
                tbl_party_check[Char.GetData(_toplayer,%对象_账号%)] = _player;
                NLG.ShowWindowTalked(_toplayer,tbl_npc["id69"],%窗口_信息框%,%按钮_是否%,1,msg);
                return 0;
        end
        return 1;
end
复制内容到剪贴板
代码:
--测试——TestNpc_id69——Lua脚本
function TestNpc_id69_Talked(_npc,_player)
        return;
end

function TestNpc_id69_WTalked(_npc,_player,_seqno,_select,_data)
        local _checkplayer = tbl_party_check[Char.GetData(_player,%对象_账号%)];
        if (tonumber(_seqno)==1) then
                if (tonumber(_select) == %按钮_是%) then
                        tbl_party_check[Char.GetData(_checkplayer,%对象_账号%)] = _player;
                        Char.JoinParty(_checkplayer,_player);
                else
                        NLG.SystemMessage(_checkplayer,"队长拒绝了你的组队申请");
                end
                return;
        end
        return;
end

作者: 易凡    时间: 2016-4-28 13:44

这样就可以了。新建立一个NPC,用来触发弹窗事件。
" {! E& z5 \* v; s  Y—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート
! h0 M! k; d% q* F7 k1 f+ e# Rbbs.mocwww.com然后加一个临时表,用来缓存对象实例
作者: orochi0531    时间: 2016-4-29 11:12

测试了下,组队部分弹出对话框后,队长这边没点同意的情况下,这个队长点别人组队的话,会直接组进去
作者: jeff10363    时间: 2016-4-29 13:16

我昨天在完善踢人的那個LUA="""=  跟你一樣的情況
3 _4 d3 A8 R9 e8 {! I& t# h—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート
' v' i4 F5 i  Q2 G結果發現 你每多一個確認框  —魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート% r; n+ l% U1 k/ H% j  H
所以你就要多一個判斷 是不是 跟一開始的人相同
# J. U: F7 K1 v, R2 I4 H妖城在线论坛
/ L# Y" Q0 q8 Ubbs.mocwww.com不然在確認界面 "還沒按下 按鈕前" 會有一堆變數 一堆可能性 會產生BUG妖城在线论坛5 K# y) u7 Z5 J% [+ ^. d& R# D  S
bbs.mocwww.com/ Q' c% ?9 O- D4 J* g7 g) K3 _) t% W
越多視窗 越多判斷-..-
作者: ﹎▓ヾ僤莼べ    时间: 2016-4-29 22:39

随便写的,没怎么测试。。
' ]. t, B) p8 V0 f9 Vbbs.mocwww.com
: P. [* c; p5 ?# {" b/ b' {妖城在线论坛试试看吧,架构还是你之前的,我只是做出来效果而已。
( e: C6 S- V1 g. ]! P3 k魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表  O0 Z# S5 D5 S% i' F
另外,我不建议在人物身上挂任何的callback..(如loop,会跟宠邮的loop产生冲突)
复制内容到剪贴板
代码:
NL.RegPartyEvent(nil,"OnPlayerJoinParty");
Delegate.RegInit("PartyManager_Init");

function OnPlayerJoinParty( _index, _target, _type)
    if _type == 0 then
                local ConfirmMessage = "\\n\\n"..Char.GetData(_index, 2000).." 申请加入您的队伍。\\n\\n是否同意其入队申请呢?\\n\\n同意入队请选择『是』,拒绝入队请选择『否』。\\n"
                if NLG.ShowWindowTalked( _target, m_PartyManager, 0, 12, _index, ConfirmMessage) < 0 then
                        return 1;        --异常处理机制(如果没法给队长发送消息..)
                end
                return 0;
    end
    return 1;
end

function OnPartyManagerWindowTalked( _me, _tome, _seqno, _select, _data)
        if not _seqno then        --索引异常(一般不会出现)
                return;
        end

        local PartyMode = Char.GetData( _tome, 386); --%对象_组队模式%
        if PartyMode > 1 then        --组队状态异常( 0 is none, 1 is leader)
                return;
        end
               
        if( _select == 8) then
                NLG.SystemMessage( _seqno,"队长拒绝了您的入队申请!");
        else
                Char.JoinParty( _seqno, _tome);
        end
       
        return;
end

function PartyManager_Init()
    if (m_PartyManager == nil) then
                m_PartyManager = NormalCreate( 0, 99, 33, 777, 4, "PartManager");
                if( VaildChar(m_PartyManager) == true) then
                        Char.SetWindowTalkedEvent(nil, "OnPartyManagerWindowTalked", m_PartyManager);
                end
        end
end

作者: ﹎▓ヾ僤莼べ    时间: 2016-4-29 22:41

数据要一层一层的传递,如通过 _seqno 来判断。。bbs.mocwww.com# F8 \3 H, R6 c0 F
妖城在线论坛0 G# `' ]9 U5 j
很多种方式的,完全看你怎么来做。
$ }- p5 J& ~( l0 Jbbs.mocwww.com
7 {3 g6 [2 ?+ [4 L  P  zbbs.mocwww.com框架多并不代表一定会出现BUG,还是看实现思路。妖城在线论坛9 D& W) k2 h" V3 @2 B
bbs.mocwww.com0 a, m. |0 i' ?1 U5 K: r
引用:
原帖由 jeff10363 于 2016-4-29 13:16 发表
; _7 K) R( d& {; \/ h) x( g6 `( Z我昨天在完善踢人的那個LUA="""=  跟你一樣的情況妖城在线论坛* S5 I: i0 ]; V5 k& ^" h3 D5 I

3 N: H7 S/ |5 K% b) u魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表結果發現 你每多一個確認框  
" y& o! s& @+ o—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート所以你就要多一個判斷 是不是 跟一開始的人相同
: Y, G2 I4 f; C/ W魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表" v0 f- I4 ~5 T: i: ?
不然在確認界面 "還沒按下 按鈕前" 會有一堆變數 一堆可能性 會產生BUG7 u/ ^: h: I$ Q! O" g
bbs.mocwww.com& _3 X) ^0 R+ s
越多 ...

作者: ﹎▓ヾ僤莼べ    时间: 2016-4-29 22:43

利用 WindowBuffer, 在tagChar_player_work里
1 Z; L! S" ~/ S( q魔力私服,最新魔力宝贝私服技术交流—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート  v' ?' r9 K8 `1 O' G, p/ q
魔力默认也是采用的WindowBuffer来缓存临时数据。—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート# D5 m( ^! D3 S3 N1 h, J
妖城在线论坛- I) z6 |% u  o" k. x
引用:
原帖由 易凡 于 2016-4-28 13:44 发表
7 q+ V- q; y. Z7 c—魔力私服,魔力宝贝私服技术,DELPHI编程,魔力寶貝, 魔力宝贝, 크로스게이트,クロスゲート这样就可以了。新建立一个NPC,用来触发弹窗事件。
/ d' T$ |# ~$ C* N  U6 x
# f5 r2 c$ `! j8 s然后加一个临时表,用来缓存对象实例

作者: nijiechao    时间: 2016-4-29 22:55

引用:
原帖由 ﹎▓ヾ僤莼べ 于 2016-4-29 22:43 发表 妖城在线论坛1 z# J. Q9 e5 g. I3 d) S  t: m* Z
利用 WindowBuffer, 在tagChar_player_work里
  ^9 O% a- L( H0 @. F魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表# F- E2 S5 R1 x# O5 H4 N
魔力默认也是采用的WindowBuffer来缓存临时数据。妖城在线论坛- H. N  p1 S' A" K7 `: s

4 E! k0 {7 P  `0 h& x" l0 v妖城在线论坛
bbs.mocwww.com( ?+ N- j# f' N- B5 S- d0 M
魔力默认也是采用的WindowBuffer来缓存临时数据?你真逗,缓冲寄存器就缓冲寄存器嘛
# ~+ d$ ~2 ], v6 c$ e( I4 ?妖城在线论坛
. h- C& ^: {9 U) D2 E5 Q/ O; x[ 本帖最后由 HookSend 于 2016-4-30 11:51 编辑 ]
作者: 易凡    时间: 2016-4-29 23:44

魔力本身确实用WindowBuffer缓存的
7 d, S; B  q2 C& N. G3 W- d1 }妖城在线论坛妖城在线论坛0 a# W, M- q$ b9 d4 K% G
我台服引擎那边,lua的所有选择宠物和道具的位置缓存也都用这个。魔力私服,最新魔力宝贝私服技术交流' [6 O3 G. ^# i4 P9 h6 }$ h* q

3 B( @% _& c( j1 W/ C魔力私服,最新魔力宝贝私服技术交流星夜说的并无错。。。。。。: N" v+ ?5 S9 t( r( a' w/ F- t2 @3 X
魔力私服,最新魔力私服,魔力宝贝私服,魔力宝贝私服技术,魔力宝贝私服,私服架设技术,妖城,FLASH,电影,黑客,网络,网吧,破解,入侵,注册表' a0 |' |; Z. B) D5 N" @1 I- {
好好沟通交流。。。。不要太暴躁。。。




欢迎光临 妖城在线论坛 (http://bbs.mocwww.com/) Powered by Discuz! 6.0.0