What's new

NPC Ktory zmienia plec!

Status
Not open for further replies.

Seylock

Active User
Joined
Oct 21, 2010
Messages
147
Reaction score
5
Witam! :D

Szuka?em ostatnio skryptu, solidnego skryptu, kt?ry dzia?a?by na evo 8.1. Ma by? to NPC, kt?ry zmienia sex (plec). :lol: Widzialem juz 2 takie skrypty, lecz jeden napisany przez kolesia (nie dziala), a drugi skopiowa? ten skrypt, i ?eby nabi? post?w, to ?e autor nieznany itd, lecz mi ten skrypt nie dzia?a. :confused: Prosi?bym o jakiego? stabilnego npc, kt?ry zmienia p?e? za darmo, i nie trzeba premium, ani nic. Jest to potrzebne do projektu, ja wiem o co mi chodzi - je?li kto? chce napisa? sobie ?e lepiej zrobi? komend? /changesex w talkactions, to niech za?o?y sobie w?asny temat.

Pozdrawiam ;)
 

Morien

Advanced User
Joined
May 5, 2011
Messages
190
Reaction score
9
Odp: NPC Ktory zmienia plec!

Ja bym chcia? tylko powiedzie?, ?e ten skrypt jest ?adki i raczej za darmo nikt Ci go nieda, zak?adanie nowego tematu nic nieda...

Notka moderatorska:
Post nic nie wnosi do tematu.
 
Last edited by a moderator:

demon23

OT Expert
Joined
Apr 10, 2010
Messages
261
Reaction score
13
Age
25
Odp: NPC Ktory zmienia plec!

<?xml version="1.0"?>
<npc name="Plastyk" script="data/npc/scripts/operacja.lua" access="3">
<look type="128" head="20" body="100" legs="50" feet="99"/>
</npc>


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

if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then
selfSay('Hello ' .. creatureGetName(cid) .. '! I am Plastic Surgeon.')
selfLook(cid)
focus = cid
talk_start = os.clock()
elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then
selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.') elseif focus == cid then
talk_start = os.clock()

if msgcontains(msg, 'operation') or msgcontains(msg, 'change sex') then
selfSay('Do you Realy want change your Sex?! It will be cost 10000gp and 5 premium days.')
talk_state = 1

elseif talk_state == 1 then
if msgcontains(msg, 'yes') then
if pay(cid,10000) then
selfSay('/changesex ' .. creatureGetName(cid))
selfSay('You Operation was done succesful !')
else
selfSay('Sorry, you do not have enough money or Premium.')
end
end
talk_state = 0

elseif msgcontains(msg, 'bye') 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

Notka moderatorska:
+1 OT Expert [Request]
 
Last edited by a moderator:

Seylock

Active User
Joined
Oct 21, 2010
Messages
147
Reaction score
5
Odp: NPC Ktory zmienia plec!

Nie rozumiem czemu +1 OT Expert. Napisa?em ?eby nie by?o przez /changesex, i ?eby dzia?a? na evo. To jest ten sam skrypt, skopiowany z devlanda, pisa?em ?e nie dzia?a. C??, temat do zamkni?cia, je?eli tylko takie posty maj? si? pojawia?.
 
Status
Not open for further replies.
Top