mob_drop.quest VB - Reload Fehler

08/17/2013 01:05 .Zypes™#1
Guten Tag Com,
Ich habe mir ne' mob_drop.quest erstellt, weil die .txt nicht zu 100% die Item's droppt.
Wenn Ich aber nun die quest per python reloaden will, tritt ein undefinierter Fehler auf.

Fehler :

Hier ist die Quest, als pHp - Code
PHP Code:
quest mobdrop begin
    state start begin
        when kill with not npc
.is_pc() begin
            local drop_items 
= {
--                {
MOB_RACEITEM_VNUMITEM_COUNTDROP_CHANCEPC_MIN_LEVELPC_MAX_LEVEL}, (kannst du hier stehen lassen)
                {
8001501361100115},
                {
8001501371100115},
                {
800150513120115},
                {
8001380521100115},
                {
8002501361100120},
                {
8002501371100120},
                {
800250513120120},
                {
8002380521100120},
                {
8003501361100120},
                {
8003501371100120},
                {
800350513120120},
                {
8003380521100120},
                {
8004501361100125},
                {
8004501371100125},
                {
800450513120125},
                {
8004380521100125},
                {
8005501361100130},
                {
8005501371100130},
                {
800550513120130},
                {
8005380521100130},
                {
8006501361100135},
                {
8006501371100135},
                {
800650513120135},
                {
8006380521100135},
                {
8007501361100140},
                {
8007501371100140},
                {
800750513120140},
                {
8007380521100140},
                {
8008501361100145},
                {
8008501371100145},
                {
800850513120145},
                {
8008380521100145},
                {
8009501361100155},
                {
8009501371100155},
                {
800950513120155},
                {
8009380521100155},
                {
8010501361100160},
                {
8010501371100160},
                {
801050513120160},
                {
8010380521100160},
                {
8011501361100170},
                {
8011501371100170},
                {
801150513120170},
                {
8011380521100170},
                {
8012501361100175},
                {
8012501371100175},
                {
801250513120175},
                {
8012380521100175},
                {
8013501361100175},
                {
8013501371100175},
                {
801350513120175},
                {
8013380521100175},
                {
8014501361100180},
                {
8014501371100180},
                {
801450513120180},
                {
8014380521100180},
                {
8024501361100190},
                {
8024501371100190},
                {
802450513120190},
                {
8024380521100190},
                {
802430197110190},
                {
802430198110190},
                {
802430199110190},
                {
802427992120190},
                {
802427993120190},
                {
802427994120190},
                {
8025501371100190},
                {
802550513120190},
                {
8025380521100190},
                {
802530197110190},
                {
802530198110190},
                {
802530199110190},
                {
802527992120190},
                {
802527993120190},
                {
802527994120190},
                {
80255013215190},
                {
80255013315190},
                {
80255013415190},
                {
80255013515190},
                {
8026501371100190},
                {
802650513120190},
                {
8026380521100190},
                {
802630197110190},
                {
802630198110190},
                {
802630199110190},
                {
802627992120190},
                {
802627993120190},
                {
802627994120190},
                {
80265013215190},
                {
80265013315190},
                {
80265013415190},
                {
80265013515190},
                {
80265013515190},
                {
8026315015190},
                {
8026112015190},
                {
802617015190},
                {
8026715015190},
                {
802625015190},
                {
8027501361100199},
                {
8027501371100199},
                {
802750513170199},
                {
802738052170199},
                {
8027140151100},
                {
802731301101100},
                {
80271601101100},
                {
8027150151100},
                {
80272401101100},
                {
80271100151100},
                {
802711101101100},
                {
80272140151100},
                {
802721301101100},
                {
80277140151100},
                {
802771301101100},
                {
80275100151100},
                {
802750901101100},
                {
8027180121100},
                {
80273160121100},
                {
80271130121100},
                {
80275120121100},
                {
80272170121100},
                {
802750132151100},
                {
802750133151100},
                {
802750134151100},
                {
802750135151100},
                {
802750135151100},
                {
8027301971101100},
                {
8027301981101100},
                {
8027301991101100},
                {
8027279921201100},
                {
8027279931201100},
                {
8027279941201100},
                {
2597279921701105},
                {
2597279931701105},
                {
2597279941701105},
                {
25985018611001105},
                {
2598180151105},
                {
2598190151105},
                {
25981130151105},
                {
25983160151105},
                {
25982170151105},
                {
24933805311001105},
                {
2493302511501105},
                {
2493302521501105},
                {
2493302531501105},
                {
2493301971701105},
                {
2493301981701105},
                {
2493301991701105},
                {
2493250411351105},
                {
24933017911001105},
            }
            }
            for 
1table.getn(drop_items), do
                
local dropRacedropItemdropCountdropChancedropMinLeveldropMaxLevel tonumber(drop_items[i][1]), drop_items[i][2], drop_items[i][3], tonumber(drop_items[i][4]), tonumber(drop_items[i][5]), tonumber(drop_items[i][6])
                if 
npc.get_race() == dropRace and pc.get_level() >= dropMinLevel and pc.get_level() <= dropMaxLevel and dropChance >= number(010000) / 100 then
                    pc
.give_item2(dropItemdropCount)
                
end
            end
        end
    end
end 
Ich hoffe auf eine Antwort :o
08/17/2013 01:39 RandomName42#2
[Only registered and activated users can see links. Click Here To Register...]
Gehört hier rein.
08/17/2013 03:34 Xijezu#3
#closed