summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorsigtus <vantimothy@openmailbox.org>2019-01-29 05:19:34 -0300
committerGitHub <noreply@github.com>2019-01-29 05:19:34 -0300
commitf202ca60acb3fbdf6ca1db5691bef35ff758ae79 (patch)
tree4a5c1fbcb3a1c5114c3c157d6cdbb684d93a71d3 /npc
parent6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1 (diff)
downloadhercules-f202ca60acb3fbdf6ca1db5691bef35ff758ae79.tar.gz
hercules-f202ca60acb3fbdf6ca1db5691bef35ff758ae79.tar.bz2
hercules-f202ca60acb3fbdf6ca1db5691bef35ff758ae79.tar.xz
hercules-f202ca60acb3fbdf6ca1db5691bef35ff758ae79.zip
Update Global_Functions.txt
Diffstat (limited to 'npc')
-rw-r--r--npc/other/Global_Functions.txt27
1 files changed, 9 insertions, 18 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt
index 860053b70..86332e931 100644
--- a/npc/other/Global_Functions.txt
+++ b/npc/other/Global_Functions.txt
@@ -446,33 +446,24 @@ function script F_MesColor {
function script F_GetTradeRestriction {
.@trade = getiteminfo(getarg(0), ITEMINFO_TRADE);
- if (.@trade == 0) {
+ if (.@trade == 0)
return "None";
- }
.@trade$ = "";
- if (.@trade & ITR_NODROP) {
+ if (.@trade & ITR_NODROP)
.@trade$ += "NoDrop|";
- }
- if (.@trade & ITR_NOTRADE) {
+ if (.@trade & ITR_NOTRADE)
.@trade$ += "NoTrade|";
- }
- if (.@trade & ITR_PARTNEROVERRIDE) {
+ if (.@trade & ITR_PARTNEROVERRIDE)
.@trade$ += "PartnerOverride|";
- }
- if (.@trade & ITR_NOSELLTONPC) {
+ if (.@trade & ITR_NOSELLTONPC)
.@trade$ += "NoSellToNpc|";
- }
- if (.@trade & ITR_NOSTORAGE) {
+ if (.@trade & ITR_NOSTORAGE)
.@trade$ += "NoStorage|";
- }
- if (.@trade & ITR_NOGSTORAGE) {
+ if (.@trade & ITR_NOGSTORAGE)
.@trade$ += "NoGuildStorage|";
- }
- if (.@trade & ITR_NOMAIL) {
+ if (.@trade & ITR_NOMAIL)
.@trade$ += "NoMail|";
- }
- if (.@trade & ITR_NOAUCTION) {
+ if (.@trade & ITR_NOAUCTION)
.@trade$ += "NoAuction|";
- }
return .@trade$;
}