Forum

> > Carnage Contest > For Allah,weapon Issue
Forums overviewCarnage Contest overviewLog in to reply

English For Allah,weapon Issue

21 replies
Page
To the start Previous 1 2 Next To the start

old closed For Allah,weapon Issue

cendol94
User Off Offline

Quote
Ok,I had read the thread which is related to the for allah weapon.Well,I AM A MUSLIM,but I think IT IS OFFENSIVE,BUT,I take it lightly.
It's for fun rite?Even in the WORM game,there is a weapon called KAMIKAZE which show the japanees attacks.

Well,here I HAVE CHANGED THE SCRIPTS,[is it illegal,coz THIS IS OPEN SOFTWAE RIGHT?]but still,is it gonna work?
FEEDBACKS PLEASE!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
--------------------------------------------------------------------------------
-- Weapon For Kamikaze
-- Original Carnage Contest Weapon
-- Script by DC, September 2009, www.UnrealSoftware.de
--------------------------------------------------------------------------------

-- Setup Tables
if cc==nil then cc={} end
cc.kamikaze={}

-- Load & Prepare Ressources
cc.allah.gfx_icon=loadgfx("weapons/kamikaze.png")							-- Weapon 

Icon
setmidhandle(cc.allah.gfx_icon)
cc.allah.gfx_wpn=loadgfx("weapons/belt.bmp")							-- Weapon Image
setmidhandle(cc.kamikaze.gfx_wpn)

--------------------------------------------------------------------------------
-- Weapon: Kamikaze
--------------------------------------------------------------------------------

cc.kamikaze.id=addweapon("cc.kamikaze","kamikaze!",cc.kamikaze.gfx_icon,1,2)	-- Add Weapon (1 use, first in 

round 2)

function cc.kamikaze.draw()												

-- Draw
	setblend(blend_alpha)
	setalpha(1)
	setcolor(255,255,255)
	setrotation(0)
	hudinfo("Attention: Hitting [Space] with this weapon will kill your whole team!")
	-- Draw at each player of team
	players=playertable()
	for i=1,#players,1 do
		if getplayerhealth(players[i])>0 and getplayerteam(players[i])==getplayerteam(0) then
			setscale(getplayerdirection(players[i]),1)
			drawimage(cc.kamikaze.gfx_wpn,getplayerx(players[i]),getplayery(players[i])+7)
		end
	end
end

function cc.kamikaze.attack(attack)										-- 

Attack
	if (weapon_shots<=0) then
		if (attack==1) then
			-- No more weapon switching!
			useweapon(0)
			weapon_shots=weapon_shots+1
			-- Suicide for each player of team
			players=playertable()
			for i=1,#players,1 do
				if getplayerhealth(players[i])>0 and getplayerteam(players[i])==getplayerteam(0) 

then
					-- Suicide
					playerdamage(players[i],100000)
					-- Cause damage
					arealdamage(getplayerx(players[i]),getplayery(players[i]),120,90)
					-- Destroy terrain
					terrainexplosion(getplayerx(players[i]),getplayery(players[i]),50,1)
					-- Crater
					grey=math.random(0,40)
					if math.random(0,1)==1 then
						terrainalphaimage(gfx_crater150,getplayerx(players[i]),getplayery

(players[i]),math.random(6,9)*0.1,grey,grey,grey)
					else

And heres another,I changed it in CC Original

1
scripts/CC Original/weapons/Kamikaze.lua

And the names of image is changed into kamikaze.png
but the name of belt is remained UNCHANGED.

REPLY NOW!!!

old Re: For Allah,weapon Issue

NP_Beta
COMMUNITY BANNED Off Offline

Quote
Woah, guy, just calm down here, ok? Nobody has to answer yo. Then, please write in a form eveybody understand and dont use capitals, its annoying.
its illegal, coz this is open software? What the hell you wanted to say?
And we alle give something on your problem. maybe you should stop think just of your muslin-whatever and think about something other. you changed it into kamikatze, a japanese attack. Woah, dont you think some japanese would be angry about that? You said you take it lighty, so do it and dont think about this nonsense anymore. When everybody say something have to be changed because he dont like...you hopefully know what happen.

oh yeah and please read that...use the search function before creating a post...a simple search for "allah" without post is enough:
http://unrealsoftware.de/forum_posts.php?post=159749&start=0#post159749

old Re: For Allah,weapon Issue

RayHanley
User Off Offline

Quote
spf357 has written
Woah, guy, just calm down here, ok?...

...its illegal, coz this is open software? What the hell you wanted to say?
post=159749&start=0#post159749


you have some misunderstanding:
he was asking is it illegal to change stuff, then adding in the fact that it is open software to insure his own stand since he did change something, which he is right; and the japanese part was unnecessary, it won't be calming him down

old Re: For Allah,weapon Issue

DC
Admin Off Offline

Quote
scripts/CC Original/info-license-readme.txt has written
"CC Original" contains the original Carnage Contest items.
Scripts by Peter Schauß aka DC, 2009
----------------------------------------------------

License:
Creative Commons: Attribution-Noncommercial 3.0 Germany
http://creativecommons.org/licenses/by-nc/3.0/de/deed.en

An attribution is NOT necessary as long as
you use the scripts for the game Carnage Contest

----------------------------------------------------
www.CarnageContest.com
www.UnrealSoftware.de
www.USGN.de


in short that means: yes, you can change it as you like.
however: this will only help you if you are the one who hosts the game because the game always uses the scripts of the host only.

btw: changing the addweapon line would have been enough to assign a different name. all the other stuff is just internal and not visible to normal players.

old Re: For Allah,weapon Issue

sonnenschein
User Off Offline

Quote
cendol94 has written
1
2
3
4
5
6
7
-- Load & Prepare Ressources
cc.[b]allah[/b].gfx_icon=loadgfx("weapons/kamikaze.png")							-- Weapon 

Icon
setmidhandle(cc.[b]allah[/b].gfx_icon)
cc.[b]allah[/b].gfx_wpn=loadgfx("weapons/belt.bmp")							-- Weapon Image
setmidhandle(cc.kamikaze.gfx_wpn)

It should be like this:
1
2
3
4
5
6
7
-- Load & Prepare Ressources
cc.[b]kamikaze[/b].gfx_icon=loadgfx("weapons/kamikaze.png")							-- Weapon 

Icon
setmidhandle(cc.[b]kamikaze[/b].gfx_icon)
cc.[b]kamikaze[/b].gfx_wpn=loadgfx("weapons/belt.bmp")							-- Weapon Image
setmidhandle(cc.kamikaze.gfx_wpn)

old Re: For Allah,weapon Issue

cendol94
User Off Offline

Quote
Ok,thanks to all that helping me.It is working now!
Dosen't matter if it affects online gaming,I just play it with my bro.

ps*we don't need to be so serious about black joke right?
     It is because my bro told me to change the name


CARNAGE CONTEST ROX!

old Re: For Allah,weapon Issue

DannyDeth
User Off Offline

Quote
No offence meant to you, but you actually sound like you just learned how to speak english online, about two hours ago. And by the way spf357 makes sence, don't write in caps lock, it annoys the "Sugar Honey Ice Tea" out of people. But hey, it is true, just google suicide bomber and see the pictures, its all over the place. But i guess that stereotyping all muslims/arabian people to be terrorists about to blow themselves up is wrong, infact i could get locked up if i had to say this in public, here in South Africa ( Rascism is taken a bit too seriously here ).

old Re: For Allah,weapon Issue

Time
User Off Offline

Quote
DC you should really add a new rule about this, I'm just tired of kids trying to act cool and posting replies such as: "Learn to spell noob." , "You english sucks." and so on.
Everybody here tries hard to make himself understanded by the community. You should respect this haters!

And, @DannyDeth, why won't you learn Arabic and let's see how good you are? Oh wait.. right... you're too lazy and ignorant to do such a thing, unlike @cendol94 whom you should respect for his efforts instead of mocking him!

I'll give you an example, but i'm not a "learn-to-spell-noob"-er.
I'm just doing this to show you how pointless these things are.

>>Learn to spel "Racism" you noob!<<

I know you did this by mistake and i don't care! Do you see? That was pointless wasn't it?
Well it was as pointless as your last reply there..the english part.
Behave.•

old Re: For Allah,weapon Issue

DoP3
User Off Offline

Quote
Anders4000 has written
√ I agree to Time4Parteh.

Me too!I totally agree with you Time for path.
I am Muslim and Arab too, I play carnage contest time to time but i really don't care about that, it's just black humor- so I just took it easy and used the script and/or ignored that weapon.
BTW, thanks cendol94 for the script ;P

And guys, Bad idea to continue flaming( just for your good, you might get a violation)

old Re: For Allah,weapon Issue

DC
Admin Off Offline

Quote
CC has a start screen which says that there is black humor and stereotypes and that it is not serious.
everyone who can't live with that has to close the game when reading this screen. yes, it's that simple.

ot: I do not add rules for every crap. the rules list needs to be very short. it only shows the most important and basic stuff.
I can think of millions of additional rules but nobody would read such a long list (most people don't even read the short one). and it's off-topic (didn't you read the rules?! :P). so no more comment on that please!

old Re: For Allah,weapon Issue

bezmolvie
User Off Offline

Quote
I guess the best way to handle this while not taking anything out, is, what DC has already done, add a warning/info screen, and, add more weapons. Instead of insulting only one, insult them all, therefore, not being biased. If I remember correctly, in one of the worms there is something among the lines of a Holy Hand Grenade, and, in Worms 3D, a weapon that launches a priest. If weapons were to be conceived that pointed out flaws or used stereotypes for all religions, I don't see how you can make the point that you've been insulted if you believe in any specific one. This, however, is just a loose theory, and I am not sure of the outcome if this path were to be followed.

On a search, I found this:
static.tvtropes.org/pmwiki/pub/images/worms_grenade.jpg (Only works if you copy&paste the adress)
http://openclipart.org/people/gnu32/gnu32_Worms_Holy_Hand_Grenade.png
http://www.wormsforts.com/images/good/weap_bazo_2.jpg

old Re: For Allah,weapon Issue

Vectarrio
User Off Offline

Quote
And, as I understand, Cc's Diabollic grenade is practically the same as Worms' Holy Hand Grenade. Look:
It destroys more terrain, so does HHD;
It says "Muhahahaha!" and HHD says "hallelujah!"

old Re: For Allah,weapon Issue

Vibhor
User Off Offline

Quote
Bloodshot has written
Meh. My point was that CC insulted the Taliban/Muslims, Worms Christianity.

you want to state that CC is made by christian to bias muslims?
and worms is made by muslims to bias christanity???
well fck that
games never meant to be taken serious
its all for fun
I have a big example for that but lets just forget it

old Re: For Allah,weapon Issue

DannyDeth
User Off Offline

Quote
Time4Parteh has written
DC you should really add a new rule about this, I'm just tired of kids trying to act cool and posting replies such as: "Learn to spell noob." , "You english sucks." and so on.
Everybody here tries hard to make himself understanded by the community. You should respect this haters!

And, @DannyDeth, why won't you learn Arabic and let's see how good you are? Oh wait.. right... you're too lazy and ignorant to do such a thing, unlike @cendol94 whom you should respect for his efforts instead of mocking him!

I'll give you an example, but i'm not a "learn-to-spell-noob"-er.
I'm just doing this to show you how pointless these things are.

>>Learn to spel "Racism" you noob!<<

I know you did this by mistake and i don't care! Do you see? That was pointless wasn't it?
Well it was as pointless as your last reply there..the english part.
Behave.•


Right back at you, learn how to spell "spel"... its a typing error!

Oh yeah, and this:
understanded, it's understood.

Listen here kiddie, you obviously have no idea who the hell you are messing with.If you are going to post something in the ENGLISH forums, it is supposed to be proper english, not pigen! ( And if you like, go ahead and look that up in a dictionary, it's a form of english that is mixed with a persons native language ) noob, i have been watching these forums ( only joined in 2009 though ) since the english forums first came on, in 2006. So don't call me a noob! Next, i would like to emphasise the fact that it CrazyX also commented on his use of the english language, so why the hell do i get the cold-shoulder, hey?! Finally, stop acting like a moderator, you are just a user!

EDIT: Oh yes, and by the way, "racism"can be spelt both mine and your way, so dont try correct me on my english, the only errors i make a typing errors

old Re: For Allah,weapon Issue

Time
User Off Offline

Quote
You just won't see reason will ya?
I won't bother making a propper reply, you're just blinded by your own "rightfulnes".

I don't recall calling you a noob... You don't even seem to understand what my previous comment's goal was.

I am stupid just for hoping that you would understand what respect is.

Guess that it just can't be helped, there are many guys like you out there, I don't think I am the only one who tried to kick some sence into your kind.

And by the way, reading your last reply, I realised that you're the one acting like a self-centered moderator.
And why are you saying that you joind in 2009. Your account details don't agree with that.

Case closed. Further comms will be ignored because it's painful for me to see how careles some people can be.

Before this hapenned both you username and avatar were somewhat repulsive to me, now that i know you personality as well, i don't feel like having anything to do with you anymore.



PS* You actually fell for it (the "spel" part). Wow.
edited 3×, last 08.07.10 05:46:19 pm

old Re: For Allah,weapon Issue

Crazyx
User Off Offline

Quote
@DannyDeth: woah! Hey! Don't mix me up to that crap! Yes, I correct users, but I'm friendly enough to orientate them, act like a crazy manic so they wont feel downgraded and even encourage them like I did with Minigolf Madness English upload!

old Re: For Allah,weapon Issue

Vibhor
User Off Offline

Quote
what I ask is for a close of this thread as the issue has been resolved
and what I demand is that the creation of a new thread for this grammer nazi stuff
To the start Previous 1 2 Next To the start
Log in to replyCarnage Contest overviewForums overview