• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Clary Request thread

Status
Not open for further replies.

Clary

New Member
Joined
Mar 7, 2008
Messages
1,007
Reaction score
1
Do u need any action script? or talk action? or move event?
Request it here and I will make it for u asap if I can


Remember only action, talk & move nothing else.
Move only stepin alone and maybe stepout alone

Yours,
Clary
 
Last edited:
Nope it dont work correctly. Also If you wanna see name of spell instead of cast word then you need to edit sources I think :p.
 
Yup, What Ronaldino said is right 100% :) I am using a spell system to make it work :)(Source edit)
 
Last edited:
Ok, Clary, show us how pr0 you are. I request an action script based on "cascading actions", If I open depot then it run 2 scripts + open depo. I'm 100% sure, you dont release that =(.
 
This is source edit :)
EDIT:
Try using same uniqueid/actionid for the 3 scripts (depot and the other 2)
 
Last edited:
Nice Thread! :D
If you can, can you make a "invasion lever"?
Like, press the lever, and create the monsters in the possitions.
I hope yes, cya
 
Here you go :p
PHP:
------------------------------------------------------
-- A script made by Clary 100%
------------------------------------------------------
function onUse(cid, item, frompos, item2, topos)
if item.uid == 28001 and item.itemid == 1945 and getPlayerGroupId(cid) >= 5 then
orc1pos = {x=1001, y=1005, z=7, stackpos=1}
doSummonCreature("Orc",orc1pos)
doSendMagicEffect(orc1pos,10)
broadcastMessage("Orc invasion! Orc invasion triggered through Orc invasion lever.", MESSAGE_STATUS_WARNING)
doTransformItem(item.uid,1946)
else
doPlayerSendTextMessage(cid, 22, "You must be a GM to use this lever.")
end
else
doTransformItem(item.uid,1945)
end
return 1
end
add more position for more monsters those are just examples
 
Clary i need script that get a citizen of Karmia City :D This script looks like teleport and when player go to in its get citizen of this player :p
 
Teleport him to position:
x=424
y=507
z=7
and get white text on the center (like broadcast) Now your Citizen of Karmia :pP
 
oh kk easy :)
try improving ur English.
it is town id?
Here you go
copy paste any file (lua) and rename it to "citizen" then
put it in movements/scripts (edit the town id to the one u want)
PHP:
------------------------------------------------------------------
-- A script made by Clary 100%
------------------------------------------------------------------
local newpos = {x = 424, y = 507, z = 7, stackpos = 253}
function onStepIn(cid, item, position, fromPosition)
	if item.actionid == 20010 then
		doPlayerSetTown(cid, 2)
		doTeleportThing(cid, newpos)
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You are a citizen of karmia city now!")
	end
	return TRUE
end
and in movements.xml put this line
Code:
	<movevent event="StepIn" actionid="20010" script="citizen.lua"/>
 
Last edited:
Its Moveevent script(onEquip)
I'm need script what will make this:
I'm equip weapon with ID 7384. Now its check what is actionid and if:
its 9999 then weapon is transformed to 7856 with 256 charges
its 9998 then weapon is transformed to 7765 with 256 charges
its 9997 then weapon is transformed to 7746 with 256 charges
its 9996 then weapon is transformed to 7771 with 256 charges
Sorry for bad english :/
TFS 3.0 rev-815
 
Last edited:
so there charges can be add in items.xml??
BTW thanks for script ;p i test and edit :p
#edit
it's working but unexpect is this line:
local newpos = {x = 424, y = 507, z = 7, stackpos = 253}
and this
doTeleportThing(cid, newpos)
cuz the teleport automaticlly move you to this location but thanks for help man :D
#edit 2
But... when i copy this script and use to another town the old town(Karmia) doesn't work. Only this new teleport to second town working :/ Can u make the script which be original to all towns?? :>
 
Last edited:
Status
Not open for further replies.
Back
Top