Re: [CLIENT] Teeworlds Gamer
sorry, hhm i don´t seen it, hhm sorry
You are not logged in. Please login or register.
Teeworlds Forum → Modifications → [CLIENT] Teeworlds Gamer
sorry, hhm i don´t seen it, hhm sorry
cool thanks guys.
I'm mapper and... your mod broken all!!!! sry Dune... but... your mod is for noobs... (I don't see the source... ok?)
OK.., ok.... only the function for view the game layer...
can't give source bcos of zoom function i think.
look at first post, there is a patch link
http://duneudne.free.fr/source/patches/ … _3.1.patch
Hey Dune
Is it possible to bind things like: Only Show Game Tiles?
Hello.
There is a command to switch from enabled mode to disabled one with only one button - you just have to bind toggle_full_clear (with no parameters, it's a toggle).
For those who ask why I called it this way, I would tell you it's like when you ask your mum "Why is this old bridge called 'The new bridge'?". It has some historical reasons that made the feature not looking at all like what it was originally designed to be.
can't give source bcos of zoom function i think.
All of my features are perfectly legitimate, and you really don't need my code to help you to program cheats.
I'm mapper and... your mod broken all!!!! sry Dune... but... your mod is for noobs... (I don't see the source... ok?)
OK.., ok.... only the function for view the game layer...
Seriously dude! Pls show more respect to the forum members! Rude language and offense to other members is not the point of our forum.
??????????????????????????????????????
I only say that this mod is for noobs... :\ (It my opinion...)
¿Why?
Ok.. if make a flag radar = Cheat Client...
Make a Game Layer Viewer = Cheat Client...
Cheat Client = Noobs...
??????????????????????????????????????
use ??? (dont spam question marks plz)
I only say that this mod is for noobs... :\ (It my opinion...)
try to be polite: i think the mod isnt that good, i think you should improve....
¿Why?
plz use only ascii characters...
Ok.. if make a flag radar = Cheat Client...
wasnt wanted... just for races... will be fixed in next version
Make a Game Layer Viewer = Cheat Client...
why?
Cheat Client = Noobs...
not cheat client at all... race client
not cheat client at all... race client
its not supposed to be a race client.
ok... it wasnt ment to be a race client, but a basketball (lol) client...
but many features are for race
Ninja Style wrote:¿Why?
plz use only ascii characters...
[nitpicking]'¿' is in the extended ASCII table, code 168. Therefore it's an ASCII character. Maybe the legitimate answer here would be "don't use characters that aren't used is the English words or punctuation"[/nitpicking]
heinrich5991 wrote:Ninja Style wrote:¿Why?
plz use only ascii characters...
[nitpicking]'¿' is in the extended ASCII table, code 168. Therefore it's an ASCII character. Maybe the legitimate answer here would be "don't use characters that aren't used is the English words or punctuation"[/nitpicking]
i know that '¿' is extended ascii, but i asked for ascii (without the characters 128+)
Ninja Style, please stop posting like a little kid and rather learn a bit instead or you might have a ban soon.
Ninja Style, please stop posting like a little kid and rather learn a bit instead or you might have a ban soon.
how to tell a kid, stop being a kid?
Ninja Style, please stop posting like a little kid and rather learn a bit instead or you might have a ban soon.
many people must be thinking so too.. (me too)
post got +7
edit: post got +10
edit: post got +12
Lol!!! this is crazy... OK! BAN ME...
P.D: heinrich5991 relax......
P.D2: Snazzy... how is the name of this song?? http://www.youtube.com/watch?v=_7wsociyFZE
P.D3: Copy 30 codes and paste it in one mod... not is VERY HARD.... xDDD
P.D4: m!nus... i try learn.... but this comunity dont like the newbies..
Oh sry... P.D = P.S... (Opps! The point is a allowed character?)
P.D: heinrich5991 relax......
...
P.D3: Copy 30 codes and paste it in one mod... not is VERY HARD.... xDDD
it was patching and it will generate merging conflicts... he added features... like gamelayer shower, basketball mod, joining arrows (very nice)
P.D4: m!nus... i try learn.... but this comunity dont like the newbies..
i dont like unpolite people...
Oh sry... P.D = P.S... (Opps! The point is a allowed character?)
yes, point is allowed.
Ok.. Stop.
This conversation needs to be started in another thread...
What's going to be in the new version
Implement protection against black-colored people
Dune wrote:What's going to be in the new version
Implement protection against black-colored people
Yeah you are absolutely right, this sounds fuckin weird.
dune you should change this to black-colored tees. or completely black tees... ^^
m!nus wrote:Ninja Style, please stop posting like a little kid and rather learn a bit instead or you might have a ban soon.
many people must be thinking so too.. (me too)
post got +7edit: post got +10
almost all posts my mods, admins, and landil get +10
Netherland wrote:Dune wrote:What's going to be in the new version
Implement protection against black-colored peopleYeah you are absolutely right, this sounds fuckin weird.
dune you should change this to black-colored tees. or completely black tees... ^^
Ooops my bad... didn't mean any racism But whatever, Teeworlds is so racist... why would you have the right to kill your opponent just because he's red and you blue? The war of always against the two colors :s
Snazzy wrote:Yeah you are absolutely right, this sounds fuckin weird.
dune you should change this to black-colored tees. or completely black tees... ^^
Ooops my bad... didn't mean any racism But whatever, Teeworlds is so racist... why would you have the right to kill your opponent just because he's red and you blue? The war of always against the two colors :s
That is no excuse whatsoever.
You're racist.
Here you have your blacktee protection. I am too lazy to upload the patch file so you have to copypaste it:
This code makes the completely black tees the normal black. They won't be invisible or something.
This code doesn't check for things out of the range, only for completely black tees.
diff -Naur teeworlds-0.5.2-src/src/game/client//render.cpp teeworlds-antiblack/src/game/client//render.cpp
--- teeworlds-0.5.2-src/src/game/client//render.cpp 2009-10-26 19:04:30.000000000 +0100
+++ teeworlds-antiblack/src/game/client//render.cpp 2010-11-12 00:00:21.492562001 +0100
@@ -177,6 +177,15 @@
// draw body
gfx_setcolor(info->color_body.r, info->color_body.g, info->color_body.b, 1.0f);
+
+ // blacktee protection by Vijfhoek
+ if(info->color_body.r <= 0.1f && info->color_body.g <= 0.1f && info->color_body.b <= 0.1f)
+ {
+ info->color_body.r = 0.5f; // Make the red...
+ info->color_body.g = 0.5f; // ...green...
+ info->color_body.b = 0.5f; // ...and blue the same value as the vanilla-black-tee
+ }
+
vec2 body_pos = position + vec2(anim->body.x, anim->body.y)*animscale;
select_sprite(outline?SPRITE_TEE_BODY_OUTLINE:SPRITE_TEE_BODY, 0, 0, 0);
gfx_quads_draw(body_pos.x, body_pos.y, basesize, basesize);
Edit list:
Fixed a bug
Changed QUOTE tags to CODE tags
Made the edit list nicer \o/
Putted in some comments
Putted in some more explanation
Teeworlds Forum → Modifications → [CLIENT] Teeworlds Gamer
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 3 official extensions. Copyright © 2003–2009 PunBB.