• 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!

Random question | I Rep+

Zarn

New Member
Joined
Oct 19, 2009
Messages
108
Reaction score
0
Hello Agen I Will Stop Spamming Trheds Now,
This Is My Last One ^_^


Have Some Random Question I Hope U Can Answer :)

Nr 1. Can i track monster in remeres map editor?
I have some monster thats i need to delit but i cant
The Posison To them. do some one know how to fix?

Nr 2.Can Some One Do A Script For Me Whit A Heling Potion For Mana And For Healt, Healt should heal 1000 and mana 1200 Or If some one can post me to a other post :D and ofc post where i put the script.



Nr 3. I need to do a chest whit all start item but i cant get it working i undering if some one can explain how i a working chest. if its a script that i need whitch one and where i put it?

Nr 4. My Noob Manaruna i have now is fuckt up i cant use it in safe place and i cant spam it togheter whit spell how do i fix this?

And dont say change exatun bequs i dont have exatun

Nr 5. I need a script thats give the start item, and where i should place it, thanks for all help


sorry for bad enghlish hope u can help

And yes i will give u Rep + :thumbup:
 
Last edited:
1. You can press CTRL + G to jump to a position or you go and edit the spawn.xml file and find the monster you need to delete.

3. You have to make a chest, set the action id to 2000, and the unique id to anything you wish, like 10000 and add the items in the black boxes inside the chest.
 
You can use this for chests,
just set the actionid to the chest that you enter in the chest.

LUA:
local cfg = {
		storage = 50002,
		pos = {x=995, y=1034, z=7}, --where to tp to
		item = 7405, -- which item he receives
		message = 'You found links\' sword!', -- message on opening quest
		mdone = 'You have already done this quest!', -- message if he have already done the quest
		actionid = 15000 --which actionid you have to set to the chest
		};

function onUse(cid, item, fromPosition, itemEx, toPosition)
	if item.actionid == cfg.actionid then
			if getPlayerStorageValue(cid, cfg.storage) < 1 then
				setPlayerStorageValue(cid, cfg.storage, 1)
				doPlayerSendTextMessage(cid,22,cfg.message)
				doPlayerGiveItem(cid,cfg.item,1)
				doTeleportThing(cid, cfg.pos)
				doSendMagicEffect(cfg.pos, 10)
			else
				doPlayerSendTextMessage(cid,22,cfg.mdone)
				doTeleportThing(cid, cfg.pos)
				doSendMagicEffect(cfg.pos, 10)
			end
	end
return TRUE
end

add to actions.xml
LUA:
<action actionid="####" event="script" value=quests/SCRIPT NAME.lua"/>

#### = actionid used in the script.
 
Nr 1. Can i track monster in remeres map editor?
I have some monster thats i need to delit but i cant
The Posison To them. do some one know how to fix?

Didn't understand you well? You want to delete the monster but you cannot? Use better english ;)
 
Back
Top