You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
X.OutputDebugMessage(X.PACKET_INFO.NAME_SPACE, 'CHAR_INFO request from ' ..szTalkerName..' (' ..dwTalkerID..') rejected due to not max level.', X.DEBUG_LEVEL.LOG)
136
+
--[[#DEBUG END]]
137
+
return
138
+
end
139
+
X.MessageBox('MY_CharInfo', {
140
+
szMessage=_L('[%s] wants to see your detailed character info, OK?', szTalkerName),
141
+
{
142
+
szOption=g_tStrings.STR_ACCEPT,
143
+
fnAction=fnResolve,
144
+
}, {
145
+
szOption=g_tStrings.STR_REFUSE,
146
+
fnAction=fnReject,
147
+
},
148
+
{
149
+
szOption=_L('Block'),
150
+
bCheck=true,
151
+
fnAction=function()
152
+
fnReject()
153
+
CHAR_INFO_BLOCK_LIST[dwTalkerID] =true
154
+
end,
155
+
}
156
+
})
157
+
end)
144
158
else
145
159
fnResolve()
146
160
end
147
161
else
148
162
fnReject()
149
163
end
164
+
elseifdata[1] =='REFUSE' anddata[2] ==X.GetClientPlayerID() then
165
+
X.OutputSystemAnnounceMessage(_L('[%s] refused to share detailed character info with you.', szTalkerName))
0 commit comments