TS3 Spam Poke [LUA] [MENU]

shockli

Contributor
Jan 29, 2016
243
194
111
This is a script I originally coded and put on the TeamSpeak 3 forums (and it of course got removed within an hour, after 30 downloads). I came across r4p3.net and it looks like a community I will love being part of. So this is a quick welcome gift from me, this is not even close to what I can/have done and I'll be posting some more soon.

Warning: You will get a freeze for 0/10/100 seconds depending on your choice of spam pokes.

Instructions:
  1. Download the right version
  2. Copy lua script
  3. Enable lua script
  4. Right click on person you want to spam poke
  5. Spam the person

Customize and do whatever you want. It's very small and easily customizable.

Links:
New: Multi-OS Support (Thanks Bluescream, link fixed)

Linux (alternative: zalgo)
Windows (alternative: zalgo)


The reason for the different scripts for each OS is that a different delay function is used, and laziness.

Enjoy. Feel free to post a modified/updated version.
 
Last edited:

shockli

Contributor
Jan 29, 2016
243
194
111
Hello @dog
Try the Linux version, the windoze version uses the ping (if I remember correctly) from cmd, while the linux version uses os.sleep, which should be supported in Mac. If it doesn't work message here and I'll make a special one for Mac.
 

dog

Member
Jan 23, 2016
11
6
35
Hello @dog
Try the Linux version, the windoze version uses the ping (if I remember correctly) from cmd, while the linux version uses os.sleep, which should be supported in Mac. If it doesn't work message here and I'll make a special one for Mac.
Just tried, not working :(
The lua plugin for TS fails to load in total because of the files you gave me.
I made a new folder for your plugin in the lua folder.
 

shockli

Contributor
Jan 29, 2016
243
194
111
Just tried, not working :(
The lua plugin for TS fails to load in total because of the files you gave me.
I made a new folder for your plugin in the lua folder.
My plugin is not meant to crash the LUA plugin, no LUA script is able to unless something was done incorrectly on your side.
Sadly I can't help debug it for you, because I dont have a mac anywhere nearby.
I would recommend the following steps to debug:
  1. Re-install the LUA plugin (Download teamspeak, install different directory, copy the plugins/lua_plugin over to your proper install, then overwrite everything.
  2. If it loads without my script, copy my script over
  3. After that "reload all" plugins, then go to the lua settings
  4. Enable my plugin
NOTE: Do not use the Zalgo version, that is meant to fuck around with weird ascii characters and I have had problems on my Linux system from missing fonts, this might be what is causing it to crash.
If this doesnt work, run teamspeak in a terminal, and copy everything to pastebin and I'll have a look.
 

dog

Member
Jan 23, 2016
11
6
35
My plugin is not meant to crash the LUA plugin, no LUA script is able to unless something was done incorrectly on your side.
Sadly I can't help debug it for you, because I dont have a mac anywhere nearby.
I would recommend the following steps to debug:
  1. Re-install the LUA plugin (Download teamspeak, install different directory, copy the plugins/lua_plugin over to your proper install, then overwrite everything.
  2. If it loads without my script, copy my script over
  3. After that "reload all" plugins, then go to the lua settings
  4. Enable my plugin
NOTE: Do not use the Zalgo version, that is meant to fuck around with weird ascii characters and I have had problems on my Linux system from missing fonts, this might be what is causing it to crash.
If this doesnt work, run teamspeak in a terminal, and copy everything to pastebin and I'll have a look.
Got it to work, mistake on my end!
Thanks :)
 

Qraktzyl

Retired Staff
Contributor
Nov 2, 2015
997
728
161
There's an error in your linux version link path + your website appears to be offline.
 

shockli

Contributor
Jan 29, 2016
243
194
111
There's an error in your linux version link path + your website appears to be offline.
Hey there,
The URL's work, but sadly my host doesn't (*cough* free hosting *cough*), I will upload a working mega/google drive URL tomorrow when I get a chance.
Thanks for telling me
 

shockli

Contributor
Jan 29, 2016
243
194
111
@Qraktzyl URL's are now working. My host was down from a DDoS attack, aswell as my .htaccess was broken.
 

Bluscream

Retired Staff
Contributor
May 8, 2015
967
934
211
Code:
function getPlatform()
    if os.getenv("APPDATA") then
        if os.getenv("HOME") then
            return "cygwin";
        else
            return "windows";
        end
    elseif os.getenv("HOME") then
        return "unix";
    else
        return "unknown";
    end
end

function platform()
    ts3.printMessageToCurrentTab(getPlatform());
end
also i use this for sleeps:
Code:
function sleep(s)
  local ntime = os.time() + s
  repeat until os.time() > ntime
end
 

shockli

Contributor
Jan 29, 2016
243
194
111
Code:
function getPlatform()
    if os.getenv("APPDATA") then
        if os.getenv("HOME") then
            return "cygwin";
        else
            return "windows";
        end
    elseif os.getenv("HOME") then
        return "unix";
    else
        return "unknown";
    end
end

function platform()
    ts3.printMessageToCurrentTab(getPlatform());
end
also i use this for sleeps:
Code:
function sleep(s)
  local ntime = os.time() + s
  repeat until os.time() > ntime
end
Thanks! Updated. Linux version tested.
 
Top