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

Lua Starting EQ! [Advanced scripters join here] [ADDED ITEMS IDS]

Jokersman213

New Member
Joined
Dec 15, 2008
Messages
8
Reaction score
0
http://otland.net/f132/starting-eq-advanced-scripters-join-here-really-need-help-17501/
Go to this link!

I added here all the IDS!, I was gonna add to the old one, but a moderator removed my post, I didnt do anything wrong.. anyways thanks to him.. hehe, and if he's here i wish him to tell me why he removed it?

Anyways the ids :-

Code:
Rope : 2120
Shovel : 2554
Hams : 2671 [5Hams]
Wand Of Vortex : 2190
SnakeBite Rod : 2182
Plate Armor : 2463
Plate Legs : 2647
Dwarven Shield : 2525 
Steel Helmet : 2457
Leather Boots : 2643
Bright Sword : 2407
Fire Axe : 2432
Skull Staff : 2436
CrossBow : 2455
Scarf : 2661
Bolt : 2543
BackPack : 2365
 
local items = {
[1] = { 2463, 2647, 2525, 2643, 2457, 2661, 2190 },
[2] = { 2463, 2647, 2525, 2643, 2457, 2182, 2661 },
[3] = { 2463, 2647, 2643, 2457, 2455, 2543 },
[4] = { 2463, 2647, 2525, 2457, 2643, 2661, 2432 }
}
local inBackpack = {
[2120] = 1,
[2554] = 1,
[2671] = 5
}
function onLogin(cid)
if getPlayerStorageValue(cid, 30001) == -1 then
for voc, item in pairs(items) do
if getPlayerVocation(cid) == voc then
local container = doPlayerAddItem(cid, 1988, 1)
for itemz, count in pairs(inBackpack) do
doAddContainerItem(container, itemz, count)
end
setPlayerStorageValue(cid, 30001, 1)
end
end
end
return TRUE
end

There i did the script like this and it didnt work, i create a character just get a backpack with 5 hams, rope, shovel but i dont get the eq!

please anyone re-script? :O
 
Back
Top