
6个回答
展开全部
你的键盘上的那个减号键出现问题 陷进去或是按键出现了问题
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我刚遇到了,键盘拔了都没用,可能是软件漏洞,杀杀毒,重启下就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
---------------------------------------------------------------------------------------------------
-- func: @mobhere <mobId>
-- desc: Spawns a MOB and then moves it to the current position, if in same zone.
-- Errors will despawn the mobID unless "noDepop" was specified (any value works).
---------------------------------------------------------------------------------------------------
cmdprops =
{
permission = 1,
parameters = "ii"
};
function onTrigger(player, npcId)
require("scripts/globals/status");
if (npcId == nil) then
player:PrintToPlayer("You must enter a valid npcId.");
return;
end
local npc = GetNPCByID(npcId);
if (npc == nil) then
player:PrintToPlayer( string.format( "NPC with ID '%i' not found!", npcId ) );
return;
end
if (player:getGil() < 10) then
player:PrintToPlayer("You not have enough Gil.");
return;
end
player:delGil(10);
player:setPos( npc:getXPos(), npc:getYPos(), npc:getZPos(), npc:getRotPos(), npc:getZoneID() );
end;
-- func: @mobhere <mobId>
-- desc: Spawns a MOB and then moves it to the current position, if in same zone.
-- Errors will despawn the mobID unless "noDepop" was specified (any value works).
---------------------------------------------------------------------------------------------------
cmdprops =
{
permission = 1,
parameters = "ii"
};
function onTrigger(player, npcId)
require("scripts/globals/status");
if (npcId == nil) then
player:PrintToPlayer("You must enter a valid npcId.");
return;
end
local npc = GetNPCByID(npcId);
if (npc == nil) then
player:PrintToPlayer( string.format( "NPC with ID '%i' not found!", npcId ) );
return;
end
if (player:getGil() < 10) then
player:PrintToPlayer("You not have enough Gil.");
return;
end
player:delGil(10);
player:setPos( npc:getXPos(), npc:getYPos(), npc:getZPos(), npc:getRotPos(), npc:getZoneID() );
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看下是不是你的键盘卡东西了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询