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

Could you help me?

advander

Duck
Joined
May 17, 2010
Messages
275
Reaction score
9
okay i made my own mounts no i dont use 8.7
I'm using a 8.54 distro
Okay this is what i have done.
made npc for mount.
like getting addons..
you can select the mount in set outfit I've tryed many times too make that damn outfit haste but i failed so I ask you could you help me to make it haste the ID's of oufits are

356 and 357
356=man
357=female

sry for my bad english

and thank you in advance
i will rep :>
 
that is the funny thing i dont have a mount script.
I've a npc like addoner you need collect items and he give you the mount you can select the mount like outfit.
so It's exally a outfit :/

sry for my bad english
 
where too put im really a noob xD

in oufit.xml orwhat :p
No you make a script.

I'm not a scripter but it should be something like this.
Lua:
function onOutfit(cid, old, current)
doChangeSpeed(cid, 100)
end
This is not a working script :p just an example
 
ye but how do i let it work.
like it's a outfit you can select in normal set outfit.
so whre do i need too make the script and how let it work.
You know i really feel stupid :<
 
ye but how do i let it work.
like it's a outfit you can select in normal set outfit.
so whre do i need too make the script and how let it work.
You know i really feel stupid :<
The function
Lua:
function onOutfit(cid, old, current)
will make it so once you're wearing the outfit, the script will work.
 
like?

<event type="outfit" name="mount" event="script" value="login.lua"/>

cuz i tested it no errors but no speed


go to school now if something is new i will try then.
 
Last edited:
Lua:
function onOutfit(cid,old,current)
	if isInArray({356,357},current.lookType) then
		return doPlayerSendTextMessage(cid,MESSAGE_LAST,'Works') and true
	end
end

tell me if you get a message saying it works, then I know what to do :)
 
I've tryed it no message.
Should I send my login.lau and creaturescripts.xml to you?
So you can see what I did wrong orsomething :p


http://www.speedy*****malware.localhost/files/26212794/creaturescripts.rar
 
Last edited:
Back
Top