1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-30 00:10:33 +02:00

Added pclasses' sound and hunter's reserved items

- Solves parts of #113 and #114
This commit is contained in:
LeMagnesium 2015-07-25 21:02:27 +02:00
parent 56161ae978
commit 7fe84434cf
5 changed files with 4 additions and 5 deletions

View File

@ -191,12 +191,14 @@ function pclasses.api.assign_class(player)
if pclasses.api.get_player_class(player:get_player_name()) ~= "hunter" then
pclasses.api.set_player_class(player:get_player_name(), "hunter")
minetest.chat_send_player(player:get_player_name(), "You are now a hunter")
minetest.sound_play("pclasses_full_hunter")
end
elseif pclasses.classes[pclasses.api.id_for_class("warrior")].match_function(player) then
if pclasses.api.get_player_class(player:get_player_name()) ~= "warrior" then
pclasses.api.set_player_class(player:get_player_name(), "warrior")
minetest.chat_send_player(player:get_player_name(), "You are now a warrior")
minetest.sound_play("pclasses_full_warrior")
end
elseif pclasses.api.get_player_class(player:get_player_name()) ~= "adventurer" then
@ -220,8 +222,8 @@ end
pclasses.api.reserve_item("warrior", "moreores:sword_mithril")
pclasses.api.reserve_item("warrior", "default:dungeon_master_s_blood_sword")
pclasses.api.reserve_item("hunter", "throwing:bow_horn")
pclasses.api.reserve_item("hunter", "throwing:bow_minotaur_horn")
pclasses.api.reserve_item("hunter", "throwing:bow_minotaur_born_improved")
minetest.register_globalstep(function(dtime)

View File

@ -1,3 +0,0 @@
-- I'm adding this file, just to pretend to do something in order to make
-- Minetest think this is a mod and make my local server start..
-- Sincerly, Mg