Skip to content

Commit

Permalink
Changed some design things for chat.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lead0b110010100 authored and Lead0b110010100 committed Apr 28, 2020
1 parent b7387b2 commit 150e83f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main/srv1/share/locale/germany/quest/level_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ quest level_info begin
state start begin
when levelup begin
if pc.level == 100 and not pc.is_gm() then
notice_all(tag(SERVER_COLOR, "[Server]") .. " " .. clickable_pn_tag(NAME_COLOR, pc.get_name()) .. " " .. tag(TEXT_COLOR, string.format("hat das max Lv. %d erreicht, Glückwunsch!", 100)))
notice_all(tag(SERVER_COLOR, "[Server]") .. " " .. clickable_pn_tag(NAME_COLOR, pc.get_name()) .. " " .. tag(TEXT_COLOR, string.format("hat das max. Lv %d erreicht, Glückwunsch!", 100)))
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion main/srv1/share/locale/germany/quest/rainbowstone.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ quest rainbowstone begin
pc.set_skill_level((vnum) ,40)
say_reward("Deine Fertigkeit wurde auf P gesetzt.")
say_reward("Viel Spaß weiterhin auf unserem Server!")
notice_all(tag(SERVER_COLOR, "[Server]") .. " " .. clickable_pn_tag(NAME_COLOR, pc.get_name()) .. " " .. tag(TEXT_COLOR, string.format("hat erfolgreich %sauf P geskillt!", name)))
notice_all(tag(SERVER_COLOR, "[Server]") .. " " .. clickable_pn_tag(NAME_COLOR, pc.get_name()) .. " " .. tag(TEXT_COLOR, string.format("hat erfolgreich %sperfektioniert!", name)))
pc.removeitem("50512", 1)
end
end
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
quest refine_item_information begin
state start begin
when refine with item.get_level() == 9 begin
notice_all(string.format("%s %s |cffa7ffd4hat erfolgreich %s geuppt!|r", tag(SERVER_COLOR, "[Server]"), clickable_pn_tag(NAME_COLOR, pc.get_name()), clickable_item_tag(ITEM_COLOR, item.get_vnum(), item.get_name())))
notice_all(string.format("%s %s |cffa7ffd4hat erfolgreich|r %s |cffa7ffd4geuppt!|r", tag(SERVER_COLOR, "[Server]"), clickable_pn_tag(NAME_COLOR, pc.get_name()), clickable_item_tag(ITEM_COLOR, item.get_vnum(), item.get_name())))
end
end
end
4 changes: 2 additions & 2 deletions main/srv1/share/locale/germany/quest/soulstone.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ quest soulstone begin
pc.change_alignment(-need_alignment)
say_title(string.format("%s Erfolgreich!", title))
if 40 == pc.get_skill_level( skill_vnum ) then
say("Herzlichen Glückwunsch!")
notice_all(pc.get_name().. " hat erfolgreich " ..skill_name.. "perfektioniert!")
say("Herzlichen Glückwunsch!")
notice_all(tag(SERVER_COLOR, "[Server]") .. " " .. clickable_pn_tag(NAME_COLOR, pc.get_name()) .. " " .. tag(TEXT_COLOR, string.format("hat erfolgreich %sperfektioniert!", skill_name)))
else
say(string.format("Deine Fertigkeit %shat", skill_name))
say(string.format("Stufe G%d erreicht!", (skill_level - 30 + 1)))
Expand Down

0 comments on commit 150e83f

Please sign in to comment.