What's new

bp mf

Quix

Active User
Joined
Sep 19, 2008
Messages
55
Reaction score
0
potrzebuje skrypta zeby seller selal bp life fluids i mana fluids za 1k bp ;] pod tibie 7.6 da ktos ??
 

Kucyk93

Active User
Joined
Nov 5, 2008
Messages
106
Reaction score
21
Odp: bp mf

Tworzymy plik Meler.lua w data/npc

Code:
<?xml version="1.0"?>
<npc name="Meler" script="data/npc/scripts/bp_run.lua" access="3" lookdir="2" autowalk="1">
    <mana now="800" max="800"/>
    <health now="200" max="200"/>
<look type="134" head="114" body="113" legs="113" feet="113"/>
</npc>

Nast?pnie tworzymy plik bp_run.lua w data/npc/scripts
i wpisujemy to:


Code:
local focus = 0
local talk_start = 0
local target = 0
local following = false
local attacking = false
function onThingMove(creature, thing, oldpos, oldstackpos)
end
function onCreatureAppear(creature)
end
function onCreatureDisappear(cid, pos)
      if focus == cid then
          selfSay('Good bye then.')
          focus = 0
          talk_start = 0
      end
end
function onCreatureTurn(creature)
end
function msgcontains(txt, str)
      return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)'))
end
function onCreatureSay(cid, type, msg)
      local msg = string.lower(msg)
      if msgcontains(msg, 'hi') and focus == 0 and getDistanceToCreature(cid) < 4 then
          selfSay('Siema ' .. creatureGetName(cid) .. '! Selluje bp run (bp runes).')
          focus = cid
          talk_start = os.clock()
      elseif msgcontains(msg, 'hi') and focus ~= cid and getDistanceToCreature(cid) < 4 then
          selfSay('Sorry, ' .. creatureGetName(cid) .. '! czekaj minute.')
    elseif focus == cid then
        talk_start = os.clock()
        if msgcontains(msg, 'backpacks') or msgcontains(msg, 'bp runes') then
            selfSay('Selluje bp hmm (20k), bp uh (20k), bp gfb (20k), bp explosion (20k), bp sd (20k), bp mwall(20k).')
        elseif msgcontains(msg, 'bp sd') then
            buyContainer(cid,[COLOR="Cyan"]2003[/COLOR],[COLOR="yellow"]2268[/COLOR],[COLOR="Magenta"]100[/COLOR],[COLOR="darkorchid"]20000[/COLOR])   
        elseif msgcontains(msg, 'bp hmm') then
            buyContainer(cid,[COLOR="cyan"]1998,[/COLOR][COLOR="yellow"]2311[/COLOR],[COLOR="magenta"]100[/COLOR],[COLOR="darkorchid"]20000[/COLOR])   
        elseif msgcontains(msg, 'bp uh') then
            buyContainer(cid,[COLOR="cyan"]2002[/COLOR],[COLOR="yellow"]2273[/COLOR],[COLOR="magenta"]100[/COLOR],[COLOR="darkorchid"]20000[/COLOR])   
        elseif msgcontains(msg, 'bp gfb') then
            buyContainer(cid,[COLOR="cyan"]2000[/COLOR],[COLOR="yellow"]2304[/COLOR],[COLOR="magenta"]100[/COLOR],[COLOR="darkorchid"]20000[/COLOR])   
        elseif msgcontains(msg, 'bp explosion') or msgcontains(msg, 'bp explo') then
            buyContainer(cid,[COLOR="cyan"]2001[/COLOR],[COLOR="yellow"]2313[/COLOR],[COLOR="magenta"]100[/COLOR],[COLOR="darkorchid"]20000[/COLOR])   
        elseif msgcontains(msg, 'bp mwall') then
            buyContainer(cid,[COLOR="cyan"]1999[/COLOR],[COLOR="Yellow"]2293[/COLOR],[COLOR="magenta"]100[/COLOR],[COLOR="DarkOrchid"]20000[/COLOR])   
        elseif string.find(msg, '(%a*)bye(%a*)') and getDistanceToCreature(cid) < 4 then
            selfSay('Good bye, ' .. creatureGetName(cid) .. '!')
            focus = 0
            talk_start = 0
        end
    end
end
function onCreatureChangeOutfit(creature)
end
function onThink()
      if (os.clock() - talk_start) > 30 then
          if focus > 0 then
              selfSay('Next Please...')
          end
        focus = 0
      end
    if focus ~= 0 then
        if getDistanceToCreature(focus) > 5 then
            selfSay('Good bye then.')
            focus = 0
        end
    end

Id backpacku w kt?rym mamy dosta? runy.
Id runy kt?r? dostaniemy w bp.
Ilo?? strza? w runie (100 = runa x100).
Kasa, ile mamy zap?aci? za bp run.

Po prostu zamie? ID podane s? id (runek) zamien na Id Fluidow. Ilo?? strza? oczywiscie ustaw 1 bo inaczej zdebuguje ci Ots-a, no i to tyle Pozdrawiam
 
Top