What's new

Varkhal pomocy.

Status
Not open for further replies.

keny5551

User
Joined
Jul 3, 2009
Messages
39
Reaction score
1
Age
16
Witam,Potrzebuj? pomocy.
Chc? ustawi? aby Varkhal sprzedawa? mi wszystkie addony za items id:2157
First addon :za 1 Coins
Second addon :za 1 coins.

to m?j skrypt Varkhal.lua
HTML:
<?xml version="1.0"?>

<npc name="Varkhal" script="data/npc/scripts/addon.lua" access="1" lookdir="2" autowalk="25">
	<mana now="800" max="800"/>
	<health now="200" max="200"/>
<look type="134" head="78" body="88" legs="0" feet="88"/>
</npc>


scripts/Varkhal.lua

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('Do zobaczenia.')
          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)
  	msg = string.lower(msg)

  	if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then
          selfSay('Witaj ' .. creatureGetName(cid) .. '! Sprzedaje first addon za 5 k i second addon za 10k.')
  		focus = cid
  		talk_start = os.clock()

  	elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
          selfSay('Przepraszam, ' .. creatureGetName(cid) .. '! Rozmawiam z toba juz minute.')

	elseif focus == cid then
		talk_start = os.clock()

		if msgcontains(msg, 'first addon') then
            selfSay('Czy chcesz kupic first addon za 5k?')
			talk_state = 1

		elseif msgcontains(msg, 'second addon') then
            selfSay('Czy chcesz kupic second addon za 10k?')
			talk_state = 2	
		
		elseif talk_state == 1 then
            if msgcontains(msg, 'tak') then
				if pay(cid,5000) then
					addon(cid, 1)
				else
                    selfSay('Nie masz tyle pieniedzy.')
				end
 			end
			talk_state = 0

		elseif talk_state == 2 then
			if msgcontains(msg, 'tak') then
				if pay(cid,10000) then
					addon(cid, 2)
				else
                    selfSay('Nie masz tyle pieniedzy.')
				end
 			end
			talk_state = 0
			
		elseif msgcontains(msg, 'pa') and getDistanceToCreature(cid) < 4 then
            selfSay('Do widzenia, ' .. creatureGetName(cid) .. '!')
			focus = 0
			talk_start = 0
		end
	end
end


function onCreatureChangeOutfit(creature)

end


function onThink()
	doNpcSetCreatureFocus(focus)
	if (os.clock() - talk_start) > 30 then
  		if focus > 0 then
              selfSay('Nastepny prosze...')
  		end
  			focus = 0
  	end
 	if focus ~= 0 then
 		if getDistanceToCreature(focus) > 5 then
             selfSay('Do widzenia.')
 			focus = 0
 		end
 	end
end

Za pomoc dam +.
 

Oskar1415

Advanced User
Joined
Feb 25, 2009
Messages
381
Reaction score
22
Odp: Varkhal pomocy.

Zobacz to:
<?xml version="1.0"?>
<npc name="Varkhal" script="data/npc/scripts/addon.lua" access="1" lookdir="2" autowalk="25">
<mana now="800" max="800"/>
<health now="200" max="200"/>
<look type="134" head="78" body="88" legs="0" feet="88"/>
</npc>
scripts/Varkhal.lua
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('Do zobaczenia.')
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)
msg = string.lower(msg)
if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then
selfSay('Witaj ' .. creatureGetName(cid) .. '! Sprzedaje first addon za 5 k i second addon za 10k.')
focus = cid
talk_start = os.clock()
elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
selfSay('Przepraszam, ' .. creatureGetName(cid) .. '! Rozmawiam z toba juz minute.')
elseif focus == cid then
talk_start = os.clock()
if msgcontains(msg, 'first addon') then
selfSay('Czy chcesz kupic first addon za 5k?')
talk_state = 1
elseif msgcontains(msg, 'second addon') then
selfSay('Czy chcesz kupic second addon za 10k?')
talk_state = 2
elseif talk_state == 1 then
if msgcontains(msg, 'tak') then
if pay(cid,1) then
addon(cid, 1)
else
selfSay('Nie masz tyle pieniedzy.')
end
end
talk_state = 0
elseif talk_state == 2 then
if msgcontains(msg, 'tak') then
if pay(cid,1) then
addon(cid, 2)
else
selfSay('Nie masz tyle pieniedzy.')
end
end
talk_state = 0
elseif msgcontains(msg, 'pa') and getDistanceToCreature(cid) < 4 then
selfSay('Do widzenia, ' .. creatureGetName(cid) .. '!')
focus = 0
talk_start = 0
end
end
end
function onCreatureChangeOutfit(creature)
end
function onThink()
doNpcSetCreatureFocus(focus)
if (os.clock() - talk_start) > 30 then
if focus > 0 then
selfSay('Nastepny prosze...')
end
focus = 0
end
if focus ~= 0 then
if getDistanceToCreature(focus) > 5 then
selfSay('Do widzenia.')
focus = 0
end
end
end
 
Status
Not open for further replies.
Top