Raised This Month: $32 Target: $400
 8% 

[CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
TheRealToxic
Senior Member
Join Date: Jul 2015
Old 02-22-2017 , 05:47   [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #1

Have fun!

A simple Rock Paper Scissors Plugin, that allows you to play RPS
vs store credits with your friends.

!rps (brings up a menu with amount, then players)
!rps amount (brings up a menu with players)
!blockrps (blocks all that invite you)
!unblockrps (same but other way)

cvars you can read in sp file.


This requires Zephstore by Zephyrus.

Installation:

SMX -> Plugins
TXT -> translation


enjoy
Attached Files
File Type: txt sspCredits.phrases.txt (7.3 KB, 392 views)

Last edited by headline; 02-22-2017 at 15:01.
TheRealToxic is offline
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 02-22-2017 , 06:34   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #2

hmmm...
Quote:
Originally Posted by Totenfluch View Post
Before TheRealToxic tries to sell this as his plugin, I'd rather release it. Thanks for ruining it.
... you got the same coding style like Totenfluch, interessting.


video by Totenfluch


your reputation is gone....
__________________
coding & free software

Last edited by shanapu; 02-22-2017 at 06:35.
shanapu is offline
TheRealToxic
Senior Member
Join Date: Jul 2015
Old 02-22-2017 , 06:35   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #3

Oh, that's really sad now.

Too bad that I own the source (I can do what I want with it)

My reputation is gone? Did I ever had reputation?
But thanks that you enlightened me!

Last edited by TheRealToxic; 02-22-2017 at 06:37.
TheRealToxic is offline
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 02-22-2017 , 06:42   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #4

hmmm... nope.
You removed all credits of the original author.... this is not how GPL works...
__________________
coding & free software

Last edited by shanapu; 02-22-2017 at 11:41. Reason: typo GLP/GPL
shanapu is offline
Arkarr
Veteran Member
Join Date: Sep 2012
Location: Just behind my PC screen
Old 02-22-2017 , 10:29   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #5

Wait a minute....
The Real Toxic's Rock Paper Scissors
Means what ? That you bought it and now it makes you full owner of that code ? I don't think the author allowed you to do so. Anyway, that's not my business. I just find that was a dirty move you did there.
__________________
Want to check my plugins ?
Arkarr is offline
Hallucinogenic Troll
Senior Member
Join Date: Apr 2015
Old 02-22-2017 , 11:30   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #6

Quote:
Originally Posted by TheRealToxic View Post
Oh, that's really sad now.

Too bad that I own the source (I can do what I want with it)

My reputation is gone? Did I ever had reputation?
But thanks that you enlightened me!
__________________
Hallucinogenic Troll is offline
Mitchell
~lick~
Join Date: Mar 2010
Old 02-22-2017 , 11:31   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #7

Code:
		if (g_eSSPItem[client] == Schere && g_eSSPItem[client2] == Schere)
			finishSSP(0, client, client2);
		if (g_eSSPItem[client] == Stein && g_eSSPItem[client2] == Stein)
			finishSSP(0, client, client2);
		if (g_eSSPItem[client] == Papier && g_eSSPItem[client2] == Papier)
			finishSSP(0, client, client2);
		if (g_eSSPItem[client] == Schere && g_eSSPItem[client2] == Stein)
			finishSSP(1, client2, client);
		if (g_eSSPItem[client] == Stein && g_eSSPItem[client2] == Schere)
			finishSSP(1, client, client2);
		if (g_eSSPItem[client] == Schere && g_eSSPItem[client2] == Papier)
			finishSSP(1, client, client2);
		if (g_eSSPItem[client] == Papier && g_eSSPItem[client2] == Schere)
			finishSSP(1, client2, client);
		if (g_eSSPItem[client] == Stein && g_eSSPItem[client2] == Papier)
			finishSSP(1, client2, client);
		if (g_eSSPItem[client] == Papier && g_eSSPItem[client2] == Stein)
			finishSSP(1, client, client2);
Ah I remember when I had to do an introduction class and I used conditional statements to every possible result.
*grabs popcorn*

Last edited by Mitchell; 02-22-2017 at 11:31.
Mitchell is offline
Totenfluch
AlliedModders Donor
Join Date: Jan 2012
Location: Germany
Old 02-22-2017 , 11:32   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #8

Quote:
Too bad that I own the source (I can do what I want with it)
Hi Heiko,

It seems like you don't understand how licenses work.
You can do anything but removing my original ownership

Breaking the GPL license through
- removing the copyright of the original creator
- not giving credit to the original creator
- not giving a copy of the GPL and removing it completly from the plugin

breaks the german law. As soon as I have your adress you'll be sued in civil court in germany.
I hope you'll learn your damm lesson when you loose.

Sooo there's literally no chance you are going to get throught with this

also: https://github.com/Totenfluch/creditsSRP

Can someone please ban him now? Thanks.
Attached Files
File Type: sp Get Plugin or Get Source (creditsSSP.sp - 313 views - 32.1 KB)
File Type: txt sspCredits.phrases.txt (7.3 KB, 268 views)
__________________
Notable Projects:
Event Item Spawner | Scissors, Rock, Paper for ZephStore
tVip | Smart Link Remover
PLG & GGC - CS:GO Roleplay

and countless more...

I can make a helicopter shoot missles if you want me to...

Last edited by Totenfluch; 02-22-2017 at 14:04.
Totenfluch is offline
headline
SourceMod Moderator
Join Date: Mar 2015
Old 02-22-2017 , 15:05   Re: [CS:GO] The Real Toxic's Rock Paper Scissors (22.02.2017)
Reply With Quote #9

You are directly violating GPL v3 by stripping copyright headers. I removed your attachments, am trashing this plugin thread, and PM'd asherkin so he can decide what the next move is.

Last edited by headline; 02-22-2017 at 15:51.
headline is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode