A teeworlds 0.7 network protocol library written in ruby
Go to file
2022-11-01 14:26:40 +01:00
lib Allow hooking in custom chat code 2022-11-01 14:25:56 +01:00
.gitignore Decompress packet payload 2022-10-25 20:17:07 +02:00
Gemfile Decompress packet payload 2022-10-25 20:17:07 +02:00
README.md Was not sure if lib or full client 2022-11-01 14:26:40 +01:00
sample.rb Allow hooking in custom chat code 2022-11-01 14:25:56 +01:00

teeworlds-client

A teeworlds 0.7 client library written in ruby

require_relative 'lib/teeworlds-client'

client = TwClient.new(verbose: false)

client.hook_chat do |msg|
  puts "chat: #{msg}"
end

client.connect('localhost', 8303)