Guild problem

09/04/2014 23:18 drobee#1
Hi there

I have 2 big problems here. First is about guild. At guardian i wanna make that when i guild is maked to require lv 75, yang and some items. Anything i change in quest it didn`t make sense. The only thing is needed when i make guild is lv. 40 and 200.000 yang. Somebody can help me with a new quest, or something i can do ?

The quest : elseif pc.get_level()<75 then
say_title("Gardian:")
say("Imi pare rau dar nu ai nivelul necesar")
say("pentru a te putea lasa sa stapanesti o")
say("breasla. Aici este vorba despre cunostinte")
say("si putere.")
return
elseif pc.count_item(50039) >= 1 then
say_title("Gardian:")
say("Nu te pot lasa sa-ti formezi o breasla pana ce")
say("nu-mi dovedesti ca esti vrednic de asta!")
say("Vino la mine cu Oscarul breslei, obiectul ce")
say("semnifica puterea, forta si intelepciunea de")
say("a putea fi un lider bun.")
say_reward("De unde il poti achizitiona:")
say("Poate fi achizitionat prin schimbul punctelor")
say("metin de la Spiritul Metin.")
return
elseif pc.get_gold()< 200000 then
say_title("Gardian:")
say("Nu ai suficient Yang pentru a forma o breasla.")
say("Crezi ca este chiar atat de usor? Trebuie")
say("sa investesti mult pentru a detine o breasla")
say("capabila si neinfricata.")
say("")
say_white("Pe mai tarziu...")
return
end
game.request_make_guild()
end
end



----------------------------------------------------------------------------------
The second problem is about the moderator ingame. I wanna add moderator in game, but only with MUTE COMMAND. I can not do this with my CMD, because the LOW WIZARD is having and teleport command. How can i add the MODERATOR in game without having all the command ?



Please. Thanks in advance

UP
09/06/2014 02:59 Fifanike#2
To the second problem. In each Channel core you can change the needed "qualification" of a player to use a command like chat block. The file u have to look for is called CMD and its in every channel core u have. So look for the command teleport and change the qualification to high wizard and then go to chat block and change the qualification level to low_wizard and check if there are some others funcion on low_wizard,, you can add other function ,, whatever u like
09/06/2014 13:05 .yorliK#3
First question:

Code:
say_title("Gardian:")
say("")
say("To make a guild you need:")
say("- Lv75")
say("- "..item_name(50039))
say("- 200000 Gold")
say("")
say("Do you want do make a guild?") 
if select("Ja", "Nein")==2 then return end 
if pc.get_level()<75 then
	say_title("Gardian:")
	say("Imi pare rau dar nu ai nivelul necesar")
	say("pentru a te putea lasa sa stapanesti o")
	say("breasla. Aici este vorba despre cunostinte")
	say("si putere.")
	return
elseif pc.count_item(50039)<1 then
	say_title("Gardian:")
	say("Nu te pot lasa sa-ti formezi o breasla pana ce")
	say("nu-mi dovedesti ca esti vrednic de asta!")
	say("Vino la mine cu Oscarul breslei, obiectul ce")
	say("semnifica puterea, forta si intelepciunea de")
	say("a putea fi un lider bun.")
	say_reward("De unde il poti achizitiona:")
	say("Poate fi achizitionat prin schimbul punctelor")
	say("metin de la Spiritul Metin.")
	return
elseif pc.get_gold()<200000 then
	say_title("Gardian:")
	say("Nu ai suficient Yang pentru a forma o breasla.")
	say("Crezi ca este chiar atat de usor? Trebuie")
	say("sa investesti mult pentru a detine o breasla")
	say("capabila si neinfricata.")
	say("")
	say_white("Pe mai tarziu...")
	return
end
pc.change_money(-200000)
pc.remove_item(50039, 1)
game.request_make_guild()