Autor |
Wiadomość |
DaMciO
Administrator
Dołączył: 22 Cze 2006
Posty: 238
Przeczytał: 0 tematów
Ostrzeżeń: 0/7 Skąd: Stalowa Wola
|
|
[NPC] Diller Narkotyków Marycha i Estazia |
|
Wienc wchodzimy w data\\npc Twozymy tam Diller Narkotykow.xml
Otwieramym tego Diller Narkotykow.xml
Wklejamy tam
<?xml version="1.0"?>
<npc name="Diller narkotykow" script="data/npc/scripts/Narkotyki.lua" access="3" lookdir="2">
<mana now="800" max="800"/>
<health now="200" max="200"/>
<look type="128" head="81" body="98" legs="45" feet="96"/>
</npc>
Potem ... wchodzimy w data\\npc\\scripts
twozymy Narkotyki.lua
Wklejamy tam :
-- the id of the creature we are attacking, following, etc.
focus = 0
talk_start = 0
target = 0
following = false
attacking = false
function onThingMove(creature, thing, oldpos, oldstackpos)
end
function onCreatureAppear(creature)
end
function onCreatureDisappear(cid, pos)
if focus == cid then
selfSay('no tak Spierdalaj.')
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 ((string.find(msg, '(%a*)hi(%a*)')) and (focus == 0)) and getDistanceToCreature(cid) < 4 then
selfSay('Siema ' .. creatureGetName(cid) .. '! Sprzedaje narkotyki narazie mam na sprzedaz marysie i ecstaze napisz offer to zobaczysz po ile narkotyki sprzedaje .')
focus = cid
talk_start = os.clock()
end
if string.find(msg, '(%a*)hi(%a*)') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
selfSay('Sorry, ' .. creatureGetName(cid) .. '! Czekaj pogadam za chwile narazie mam innego klijenta.')
end
if msgcontains(msg, 'offer') and focus == cid then
selfSay('Sprzedaje Ecstaze (200gps) i Marysie (300gps).')
talk_start = os.clock()
end
if msgcontains(msg, 'marysia') and focus == cid then
buy(cid,3067,1,300)
talk_start = os.clock()
end
if msgcontains(msg, 'ecstaza') and focus == cid then
buy(cid,3673,1,200)
talk_start = os.clock()
end
if string.find(msg, '(%a*)bye(%a*)') and focus == cid and getDistanceToCreature(cid) < 4 then
selfSay('Nara, ' .. creatureGetName(cid) .. '!')
focus = 0
talk_start = 0
end
end
function onCreatureChangeOutfit(creature)
end
function onThink()
if (os.clock() - talk_start) > 30 then
if focus > 0 then
selfSay('Nastempny Prosze...')
end
focus = 0
end
if focus ~= 0 then
if getDistanceToCreature(focus) > 5 then
selfSay('Narazie ale wroc kiedys .')
focus = 0
end
end
end
no i na koncu wchodzimy w data\\world\\npc
dodajemy tam linijke :
<npc name="Diller narkotykow" x="153" y="32" z="7"/>
w ostatnim punkcie wpiszcie inne dane w 1."x" 2."y" 3."z"
W 100% robilem sam npc tylko jeden narkotyk nie jest moj mam nadzieje ze sie podoba
Post został pochwalony 0 razy
|
|
Pią 15:34, 14 Lip 2006 |
|
|
|
|
|
|
Nie możesz pisać nowych tematów Nie możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach
|
|
|