• 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!

./attr Command

Bondy

New Member
Joined
Mar 28, 2009
Messages
282
Reaction score
1
I have some question about this command, How many things can i do with this?

I know this: /attr skull 0
/attr group 6
/attr attack 100
anyone knows more!?

thanks!
 
Lua:
local itemFuncs =
{
        ["attackspeed"] = setItemAttackSpeed,
        ["name"] = setItemName,
        ["plural"] = setItemPluralName,
        ["attack"] = setItemAttack,
        ["extraattack"] = setItemExtraAttack,
        ["defense"] = setItemDefense,
        ["armor"] = setItemArmor,
        ["extradefense"] = setItemExtraDefense,
        ["hitchance"] = setItemHitChance,
        ["range"] = setItemShootRange,
        ["actionid"] = doSetItemActionId,
        ["action"] = doSetItemActionId,
        ["aid"] = doSetItemActionId,
        ["description"] = doSetItemSpecialDescription,
        ["desc"] = doSetItemSpecialDescription,
        ["protection"] = doSetItemProtection,
        ["charges"] = doChangeTypeItem,
        ["count"] = doChangeTypeItem
}

local creatureFuncs =
{
        ["health"] = doCreatureAddHealth,
        ["maxhealth"]= setCreatureMaxHealth,
        ["mana"] = doCreatureAddMana,
        ["maxmana"] = setCreatureMaxMana,
        ["speed"] = doChangeSpeed,
        ["droploot"] = doCreatureSetDropLoot,
        ["cannotmove"] = doCreatureSetNoMove,
        ["skull"] = doCreatureSetSkullType,
        ["redskull"] = doPlayerSetRedSkullTicks
}

local playerFuncs =
{
        ["fyi"] = doPlayerPopupFYI,
        ["tutorial"] = doPlayerSendTutorial,
        ["guildrank"] = doPlayerSetGuildRank,
        ["guildnick"] = doPlayerSetGuildNick,
        ["group"] = doPlayerSetGroupId,
        ["vocation"] = doPlayerSetVocation,
        ["promotion"] = setPlayerPromotionLevel,
        ["stamina"] = doPlayerAddStamina,
        ["town"] = doPlayerSetTown,
        ["balance"] = doPlayerDepositMoney
}

rep++ :D
 
Back
Top