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

Need Urgent help - !buyhouse !sellhouse dont exist

gappe

New Member
Joined
Jul 17, 2009
Messages
71
Reaction score
0
I need script for !buyhouse !sellhouse real quick! rep++ Im using 0.3.5pl1 please help rep++
 
I need script for !buyhouse !sellhouse real quick! rep++ Im using 0.3.5pl1 please help rep++

They already exist in 0.3.5 pl1 just that the command names are different


Code:
	<talkaction words="alana res" filter="word-spaced" event="function" value="houseBuy"/>
	<talkaction words="alana grav" filter="word-spaced" event="function" value="houseSell"/>


Just enter talkactions.xml and change the "alana grav" to !sellhouse and "alana res" to !buyhouse

Here: replace the "house" topic in ur talkactions.xml with this.

Code:
	<!-- Houses -->
	<talkaction words="!buyhouse" filter="word-spaced" event="function" value="houseBuy"/>
	<talkaction words="!sellhouse" filter="word-spaced" event="function" value="houseSell"/>
	<talkaction words="alana sio" filter="word-spaced" event="function" value="houseKick"/>
	<talkaction words="aleta grav" filter="word-spaced" event="function" value="houseDoorList"/>
	<talkaction words="aleta sio" filter="word-spaced" event="function" value="houseGuestList"/>
	<talkaction words="aleta som" filter="word-spaced" event="function" value="houseSubOwnerList"/>
	<talkaction words="!leavehouse" filter="word-spaced" event="script" value="leavehouse.lua"/>
 
Back
Top