• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action Requesting Help with simple line! ^_^

Ascendia

Premium User
Premium User
Joined
Nov 23, 2008
Messages
1,865
Reaction score
123
Alright so in mystic spirit this line in the actions.xml folder was like this..




Code:
	<action fromid="7131" toid="7132" script="quests/RollerCoaster.lua"/>

I wonder how that code is re-written in [8.5] The Forgotten Server 0.3.5pl1 (Crying Damson) actions.xml

cause they use different code languages lol.. So please translate the mystic Spirit one to the new Crying Damson code.. ^_^
 
Code:
	<action itemid="7131-7132" event="script=" value="quests/RollerCoaster.lua"/>

And that is called syntax : p (as far I know)
 
Alright so in mystic spirit this line in the actions.xml folder was like this..




Code:
	<action fromid="7131" toid="7132" script="quests/RollerCoaster.lua"/>

I wonder how that code is re-written in [8.5] The Forgotten Server 0.3.5pl1 (Crying Damson) actions.xml

cause they use different code languages lol.. So please translate the mystic Spirit one to the new Crying Damson code.. ^_^

I'm using the same method and it works
 
Why wont it work for me then, you propably use Mystic Spirit..
 
Code:
	<action itemid="7131-7132" event="script[COLOR="Red"]=[/COLOR]" value="quests/RollerCoaster.lua"/>

And that is called syntax : p (as far I know)



Hermes has the right code, but he forgot to remove the "=".
Use this:
LUA:
	<action itemid="7131-7132" event="script" value="quests/RollerCoaster.lua"/>
 
Back
Top