}
}
-string item_keys_keylist(float keylist) {
+string item_keys_keylist(float keylist)
+{
// no keys
if (!keylist)
return "";
string n = "";
int base = 0;
- while (keylist) {
+ while (keylist)
+ {
int l = lowestbit(keylist);
if (n)
n = strcat(n, ", the ", item_keys_names[base + l]);
else
n = strcat("the ", item_keys_names[base + l]);
- keylist = bitshift(keylist, -(l + 1));
- base+= l + 1;
+ keylist = bitshift(keylist, -(l + 1));
+ base += l + 1;
}
return n;
#define DEFAULT_FILENAME "weapons_dump.cfg"
// NOTE: dumpeffectinfo, dumpnotifs, dumpturrets and dumpweapons use similar code
-GENERIC_COMMAND(dumpweapons, "Dump all turrets into " DEFAULT_FILENAME, false) // WEAPONTODO: make this work with other progs than just server
+GENERIC_COMMAND(dumpweapons, "Dump all weapons into " DEFAULT_FILENAME, false) // WEAPONTODO: make this work with other progs than just server
{
switch(request)
{
int longflags = 0;
FOREACH(Scores, true, {
- int p = BIT(i % 16);
+ int p = BIT(i % 16);
if (this.(scores(it)) > 127 || this.(scores(it)) <= -128)
longflags |= p;
- });
+ });
WriteShort(MSG_ENTITY, sendflags);
WriteShort(MSG_ENTITY, longflags);
FOREACH(Scores, true, {
- int p = BIT(i % 16);
+ int p = BIT(i % 16);
if (sendflags & p)
{
if(longflags & p)
else
WriteChar(MSG_ENTITY, this.(scores(it)));
}
- });
+ });
return true;
}
l = scores_label(it);
out = strcat(out, GetScoreLogLabel(l, f), ",");
}
- });
+ });
if(shortString < 2)
FOREACH(Scores, true, {
if((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
l = scores_label(it);
out = strcat(out, GetScoreLogLabel(l, f), ",");
}
- });
+ });
if(shortString < 1)
FOREACH(Scores, true, {
if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
l = scores_label(it);
out = strcat(out, GetScoreLogLabel(l, f), ",");
}
- });
+ });
out = substring(out, 0, strlen(out) - 1);
}
else if((sk = CS(pl).scorekeeper))
FOREACH(Scores, true, {
if ((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
out = strcat(out, ftos(sk.(scores(it))), ",");
- });
+ });
if(shortString < 2)
FOREACH(Scores, true, {
if ((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
out = strcat(out, ftos(sk.(scores(it))), ",");
- });
+ });
if(shortString < 1)
FOREACH(Scores, true, {
if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
out = strcat(out, ftos(sk.(scores(it))), ",");
- });
+ });
out = substring(out, 0, strlen(out) - 1);
}
return out;