Holdfény láda dropp hiba (K)

Indította skolsz, 2013-04-26, 20:33:44

2013-04-26, 20:33:44 Utolsó szerkesztés: 2013-05-10, 10:16:43 Szerző: [MOD]Aegist
sziasztok mobok nem dobnak Holdfény ládát vagy ha dobnak 1db esik csak és nem annyi esik  a menyinek kéne hogy essen  itt a hf quest

mi lehet a gond?

-- Original /e halloween_drop 1
-- Quest with rate /e h_drop 1
quest h_drop begin
        state start begin
        when kill with game.get_event_flag("h_drop") == 1 begin
        s = math.random(200,100)
        if s == 1 then
                game.drop_item("50011",200)
                return
        end
        end
end
end

s = math.random(200,100)
200.-ra dobja amikor max 100-ig számolhat random?:D


-- Original /e halloween_drop 1
-- Quest with rate /e h_drop 1
quest h_drop begin
        state start begin
        when kill with game.get_event_flag("h_drop") == 1 begin
        s = math.random(100,200)
        if s == 100 then
                game.drop_item("50011",200)
                return
        end
        end
end
end




Írd át erre:
s = math.random(1, 100)

C++ programmer at Gameloft

2013-04-27, 13:47:11 #6 Utolsó szerkesztés: 2013-04-27, 14:32:34 Szerző: Karcsi52
de nekem 200db os láda kéne ami 100% esik mobol és sok ki esik mobok bol

akkor írd ezt:
quest h_drop begin
        state start begin
        when kill with game.get_event_flag("h_drop") == 1 begin
                game.drop_item("50011",200)
        end
end
end

C++ programmer at Gameloft