kaiquegames069 Posted September 1, 2017 at 03:12 PM Share Posted September 1, 2017 at 03:12 PM Alguém sabe o porque fica dando esse erro no sysser? Um amigo me disse que pode ser um erro no questlib ou alguma quest, será que alguém poderia ajudar? number_ex: number(): first argument is bigger than second argument 1 -> 0, questlua_global.cpp 52 Link to comment
juniorsilva Posted September 1, 2017 at 04:22 PM Share Posted September 1, 2017 at 04:22 PM Definição de argumento não está correto, o que tem na linha 52? Link to comment
kaiquegames069 Posted September 1, 2017 at 04:43 PM Author Share Posted September 1, 2017 at 04:43 PM 19 minutes ago, juniorsilva said: Definição de argumento não está correto, o que tem na linha 52? Essa é a linha! lua_pushnumber(L, number((int)lua_tonumber(L, 1), (int)lua_tonumber(L, 2))); Marty disse que o erro está nessas funções do questlib: function table_get_random_item(self) return self[number(1, table.getn(self))] end function drop_gamble_with_flag(drop_flag) local dp, range = pc.get_killee_drop_pct() dp = 40000 * dp / game.get_event_flag(drop_flag) if dp < 0 or range < 0 then return false end return dp >= number(1, range) end mysql_query = function(query) Link to comment
juniorsilva Posted September 1, 2017 at 04:57 PM Share Posted September 1, 2017 at 04:57 PM problema na função number(1,0) ... Validação de campos não está muito bem definida. if db <= 0 or range <= 0 then... return false.... Link to comment
kaiquegames069 Posted September 1, 2017 at 05:30 PM Author Share Posted September 1, 2017 at 05:30 PM Fiz isso assim! function drop_gamble_with_flag(drop_flag) local dp, range = pc.get_killee_drop_pct() dp = 40000 * dp / game.get_event_flag(drop_flag) if dp <= 0 or range <= 0 then return false end return dp >= number(1, range) end Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now