Results 1 to 8 of 8
-
17-04-2010, 07:49 #1
-= TeamSpeak Lover =-
- Join Date
- Jan 2010
- Location
- athens, ga
- Posts
- 30
Can you integrate TS3 with vbulletin?
I would like to link up the vbulletin user ranks into TS3 using their accounts. Is this possible? Where should i go/ask to find a solution for this?
Basically, they have little ranks next to their name that corresponds to their forum posts rank, and i update them manually. I'd like for teamspeak to be able to auto change them as they increase rank on the forums. Thx.
-
17-04-2010, 08:49 #2
For this you need to write a function and create more than one server group. Then you can use the server commands to change the ranks. However, this is relatively mind-challenging. I personally can not do it. But I have an idea how it could go!
-
17-04-2010, 18:25 #3
-= TeamSpeak Lover =-
- Join Date
- Jan 2010
- Location
- athens, ga
- Posts
- 30
each rank has a server group in teamspeak 3. And im not sure how vbulletin does it, it just gives them a new rank everytime they get 25 posts.
-
19-04-2010, 06:02 #4
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Arkansas, USA
- Posts
- 80
I dont think it is possible. You would have to have something that is watching the SQL of the BBS and then when a rank changes sends a command to the server.
IE it would have to be a website side server side communication. Nothing is impossible but the TS3 devs would need to have a hand in it. That of which i dont think they will do or even care of doing. I would recommend doing it by hand
But to look at another point of view if you had a plugin on your client that checked your BBS' SQL with readonly access(KEY TO DETERING SNIFFING PROGRAMS FROM GETTING YOUR ROOT SQL) every few minutes and had a message queueing system(a system that sets up a line of operations to do in order and with a given delay.. This would be to keep from crashes and lags due to inputting server commands all at one time) and use that to update it then that might be a solution.
You could also have it as a normal program on your desktop seperate from TS# plugin interfacing.
I cant do it.. But that might be the way to go. But you have to remember security percations... so research in programming and internet security will be needed.. So you dont get packet sniffed or otherwise.
-
19-04-2010, 06:04 #5
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Arkansas, USA
- Posts
- 80
BTW vbulletin does it by totaling post counts that is stored in the SQL database.. you have a set parameter in your vbulletin as to how many posts are needed for a rank. Or if it is a special rank. PHPBB has this as well.
-
19-04-2010, 23:19 #6
-= TeamSpeak Addict =-
- Join Date
- Jan 2010
- Location
- US
- Posts
- 135
Ultimately it shouldn't be too difficult I don't think.
As mentioned, vB keeps track of peoples post counts already. If you had a PHP script (or application really), you could set that on a CRON/Scheduled task to check every X minutes/hours.
When that hits, just loop such as:
Obviously that's just pseudo-code but the basic idea. You might not even have to check to see if someone already has an icon if you can't add the same icon more than once (no idea if you can or can't).Code:for each award in awards { for each member in members { if (member[post_count] >= award[PostCountCheck]) { if (HasIconAlready(member, IconID) == false) { AddIconToMember(award[IconID]); } } } }
-
20-04-2010, 05:12 #7
-= TeamSpeak Lover =-
- Join Date
- Jan 2010
- Location
- athens, ga
- Posts
- 30
i have no idea how to code or do anything like that. However, i am willing to test anything and be the guinea pig if anyone wants to develop this. Sorry i am so ignorant. I have a VPS running TS3 and i'll give access to anyone that is serious in doing this. Im sure im not the only one who would think this is cool
-
30-04-2010, 15:15 #8
-= TeamSpeak User =-
- Join Date
- Apr 2010
- Location
- UK
- Posts
- 10
Can you integrate TS3 with vbulletin
with some modifications im sure it's possible.. going to look into that one and see if there's much code to change.
__________________
Bonded broadbandLast edited by acinemastare; 26-05-2010 at 18:18.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
lost file transfer connection
By xEvAngelx in forum Linux / FreeBSDReplies: 12Last Post: 24-06-2010, 18:30 -
server down and can help him no longer start
By bohdalb in forum Linux / FreeBSDReplies: 11Last Post: 18-01-2010, 16:05 -
Virtual server manager critical error?
By AndresCL in forum Linux / FreeBSDReplies: 28Last Post: 03-01-2010, 14:15 -
I cant get the server running.
By NDIS.NL in forum Linux / FreeBSDReplies: 10Last Post: 29-12-2009, 18:41


Reply With Quote

