• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Scripts Warzone, case sensitive. Help!!

Wake

Member
Joined
Oct 1, 2012
Messages
130
Reaction score
12
Location
São Paulo - Brazil
Hello guys! i need help..

In windowns my scripts work 100%...

local bossCreatures = {
["Deathstrike"] = {bauStorage = 562432},
["Gnomevil"] = {bauStorage = 562434},
["Abyssador"] = {bauStorage = 562436}
}

function onKill(cid, target, lastHit)
local creature = bossCreatures[string.lower(getCreatureName(target))]
if creature then
if isPlayer(target) or isSummon(target) then
return true
end
if getPlayerStorageValue(cid, creature.bauStorage) < 0 then
setPlayerStorageValue(cid, creature.bauStorage, 1)
end
end
return true
end

In linux no work.. help me??
This is creaturescripts.

Thanks..

- - - Updated - - -

bump

- - - Updated - - -

@UP PLAAAAA
 
Back
Top