Colocando Itens no ACC Manager

Account Manager Pelado? Nunca mais :)


\\-----------------------------------------------------------------------------//

  • local firstItems =
  • {
  • 2050, --------- Aqui onde fica espada ou escudo
  • 2382 --------- Aqui onde fica espada ou escudo
  • }
  • function onLogin(cid)
  • if getPlayerStorageValue(cid, 30001) == -1 then
  • for i = 1, table.maxn(firstItems) do
  • doPlayerAddItem(cid, firstItems[i], 1)
  • end
  • if getPlayerSex(cid) == 0 then
  • doPlayerAddItem(cid, 2651, 1) ---- Aqui onde fica o armor
  • else
  • doPlayerAddItem(cid, 2478, 1) ---- aqui onde fica a calsa
  • end
  • local bag = doPlayerAddItem(cid, 1987, 1)
  • doAddContainerItem(bag, 2674, 1) ---- Aqui onde fica os intes da bag
  • setPlayerStorageValue(cid, 30001, 1) ---- Aqui onde fica os intes da bag
  • end
  • return TRUE
  • end
\\-----------------------------------------------------------------------------//

Tutorial by me ;) ( antoniojun )