Everything posted by Alek
-
Recent forum changelog
Edit 2: -Fixed feedback plugin, you can now leave members feedback by visiting their profile
-
Recent forum changelog
Edit 1:-Members with any negative feedback have their feedback color changed from green to red
-
Recent forum changelog
Some additional changes were made today. A lot of this stuff I'm having to write myself so it's pretty tedious. Let me know if I'm missing anything. -Banned members (temp or perm) have their profile name changed to "Banned User" with a strikethrough -Member names in profiles and posts display your user formatting -Modified email notification settings so your email isn't getting spammed anymore -Fixed some dead links -Cleaned up useless breadcrumbs and social media buttons Edit 1: -Members with any negative feedback have their feedback color changed from green to red Edit 2: -Fixed feedback plugin, you can now leave members feedback by visiting their profile Edit 3: By Maldesto Added Secondary user group ranks Added Join date on post Added Who read topic Added Added Icons on forums Added color + bubble avatars Added Avatar on topic started Changed $250/$500 donor color until Rainbow is fixed
-
Kinda Liked The Old Layout Better
Sorry not interested.
-
Kinda Liked The Old Layout Better
It's more terrible than you think. I'd have to re-write the right hand div to not extend past the last forum container, then expand the bottom "whos online/members chatting" container. Otherwise the two containers would overlap. It's also not some super simple thing because there is a lot of stuff that's integrated, blocks, pages, etc.
-
Kinda Liked The Old Layout Better
I'd probably have to edit an enormous amount of code, so probably not
-
Option to switch back to old layout?
This is the same theme.
-
Kinda Liked The Old Layout Better
I've been writing a lot of custom code for the forums, just did the member colors for posts and your profile header.
- Cant purchase scripts?
-
@Staff / Site dev team
Okay, I'll turn the forums offline until every little detail is perfected.
-
NO.
We didn't do the upgrade for the hell of it.
-
@Staff / Site dev team
We've done one major forum version upgrade once in 3 years and it wouldn't really help bring the site back up any faster (considering I was only working on the theme). So a separate test server that would get used once every couple of years wouldn't be really worth it. All the normal botting services were still available.
-
NO.
It's the same layout but for IPB4. Still working out the kinks.
-
New Forum - Official Thread
I'm not going to invest too much time in updating the Chatbox, since I'd have to be editing the raw files and not config files. Chatbox service is going down in April/May. I'm looking into mobile detection and the SDN right now. Edit: Recent Topics is having an issue right now. Thanks for reporting
-
New Forum - Official Thread
Post any issues you may have with the new forum upgrade below. I'll also be looking for feedback on the general design for about the next week. Issues I'm aware of: -Leaderboards not working -SDN page not accessible -Recent Topics not working
-
Forum Upgrade
The forum has finished upgrading. Sorry for the delay, there were some issues with getting the new theme to work. Over the next week I'll be dedicating some time to restoring forum features and fixing miscellaneous bugs. Please give your feedback below! -The OSBot Staff
-
Should Ex Staff and CBA's be able to edit posts from new members
Not a chance in hell. I'd rather transform the CBA rank to a "Community Helper" rank and give them the power to edit the posts of new members.
-
Emotes
There, ??? was changed to ":???:" and all the default smiley faces are back. This community is going to explode when the IPB Chat module EOL happens in May and all the smileys disappear.
- Emotes
-
Emotes
Noah's emote was removed because nobody used it. Jack's emote was removed because nobody used it; I offered to give Jack his emote back but instead he opted it for a new emote which I added. Unless I'm missing some default emotes, we have more emotes than we did before.
-
Emotes
Oh please! The Chatbox regulars come to me with cool emote ideas and I add them as long as they're appropriate. Maldesto of course has control over the emotes as well. This drama is just as bad as complaining about how many people showed up to Trump's inaugural; who the hell cares?
-
Online Game Project
19 Jan 17: Finished basic login system, there isn't an interface for it because it would just waste time. Right now it just reads your credentials from a text file. If your username and password doesn't exist, it just creates a new account for you (will definitely change in the future). Since the only thing you can do in the game right now is move around, the only thing saved it your X and Y coords. The game is at a really good point. We have a basic map, the player can move around on the server, you can see other players in the same world as you, and your progress is saved. For now I'm going to take a week or two break to clean up a lot of the disgusting code I wrote.
-
how to filter: walking to npcs only when players arent near them
Using filters! Two ways: 1. getNpcs().filter(new Filter<NPC>() { @[member='Override'] public boolean match(NPC obj) { return obj.getPosition().distance(myPosition()) > 2; } }); 2. java.util.List<NPC> npcs = getNpcs().getAll().stream().filter(n -> n.getPosition().distance(myPosition()) > 2).collect(Collectors.toList()) Edit: Then you can use a comparator: npcs.sort(new Comparator<NPC>() { public int compare(NPC npc1, NPC npc2) { return npc1.getPosition().distance(myPosition()) - npc2.getPosition().distance(myPosition()); } }); So this will return the closest npc which is more than 2 tiles away.
-
[Stable] OSBot 2.4.108 - Prayer Patch
Strange, I drop my inventory horizontally when playing and botting and I haven't been banned for over 2 years.
-
[Stable] OSBot 2.4.108 - Prayer Patch
Because it drops it sequentially in array order.