Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > Code Gallery
FAQ Members List Calendar Today's Posts

View Poll Results: Do you think this script is good?
Yes 3 33.33%
No 6 66.67%
Voters: 9. You may not vote on this poll

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-20-2012, 07:12 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
GS1 Flamethrower

This is not the best script, but it is still a good script, it shoots fire like a bow and uses up 1 arrow and 1 bomb each use. Try it for yourself in offline editor.

PHP Code:
// NPC made by E-Man
if (created) {
setimg firebow.png
}
if (
playertouchsme) {
toweapons Flamethrower;
hide;
}
if (
weaponfired && playerdir=&& playerbombs this.>= && playerdarts this.>= 1) {
freezeplayer 1.1;
playerdarts -= 1;
playerbombs -= 1;
setani shoot,firebow1.png;
sleep 0.2;
putexplosion 0.5,playerx-0,playery-1;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-3;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-5;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-7;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-9;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-11;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-13;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-15;
sleep 0.1;
putexplosion 0.5,playerx-0,playery-17;
}
if(
weaponfired && playerdir=&& playerbombs this.>= && playerdarts this.>= 1){
freezeplayer 1.1;
playerdarts -= 1;
playerbombs -= 1;
setani shoot,firebow1.png;
sleep 0.2;
putexplosion 0.5,playerx-1.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-3.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-5.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-7.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-9.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-11.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-13.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-15.8,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx-17.8,playery+0.75;
}
if(
weaponfired && playerdir=&& playerbombs this.>= && playerdarts this.>= 1){
freezeplayer 1.1;
playerdarts -= 1;
playerbombs -= 1;
setani shoot,firebow1.png;
sleep 0.2;
putexplosion 0.5,playerx+0.5,playery+3;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+5;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+7;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+9;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+11;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+13;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+15;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+17;
sleep 0.1;
putexplosion 0.5,playerx+0.5,playery+19;
}
if(
weaponfired && playerdir=&& playerbombs this.>= && playerdarts this.>= 1){
freezeplayer 1.1;
playerdarts -= 1;
playerbombs -= 1;
setani shoot,firebow1.png;
sleep 0.2;
putexplosion 0.5,playerx+3,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+5,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+7,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+9,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+11,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+13,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+15,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+17,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+19,playery+0.75;
sleep 0.1;
putexplosion 0.5,playerx+21,playery+0.75;

You will need these images however for it to work, unless you just use the images from nukeshot.

firebow.png (Used as image in inventory)


firebow1.png (The weapon sprite)


You will need bomb1.png to be working in graal editor for this to work, I'm just saying this because bomb1.png did not work for me at first until I deleted filenamecahce.txt and reloaded it.
Reply With Quote
  #2  
Old 06-20-2012, 08:11 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
I meant to put weapon in poll, not script because I want it to include the images. Is there a way to change the poll?
Reply With Quote
  #3  
Old 06-20-2012, 08:49 PM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
You shouldn't post this into the code gallery since it's only for GS2. You can post it in the GS1 section though
And you don't need player.x-0 since that actually does change nothing. It just goes back to player.x. I'm not that good with GS1 but you could try to use the maths cbk (chris) explained you for your shoot command to safe some lines. Than you can expand the x/y with a for() loop. Could save you some time
__________________
MEEP!
Reply With Quote
  #4  
Old 06-20-2012, 09:00 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by callimuc View Post
You shouldn't post this into the code gallery since it's only for GS2. You can post it in the GS1 section though
The code gallery is just not for GS1. To quote the description of the forums:

"For showing complete scripts, if possible with comments. Mark scripts which are for GS1."
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #5  
Old 06-20-2012, 09:01 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
You shouldn't post this into the code gallery since it's only for GS2. You can post it in the GS1 section though
And you don't need player.x-0 since that actually does change nothing. It just goes back to player.x. I'm not that good with GS1 but you could try to use the maths cbk (chris) explained you for your shoot command to safe some lines. Than you can expand the x/y with a for() loop. Could save you some time
I made it say -0 because if someone wants to edit it. Also I can post GS1 here because under the tile code gallery is said:

For showing complete scripts, if possible with comments. Mark scripts which are for GS1.

And I put GS1 in the title, unless there is another way to mark it.
Reply With Quote
  #6  
Old 06-20-2012, 09:04 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I feel you have a lot to learn before you start posting scripts for others to use.
Reply With Quote
  #7  
Old 06-20-2012, 09:35 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by xXziroXx View Post
The code gallery is just not for GS1. To quote the description of the forums:

"For showing complete scripts, if possible with comments. Mark scripts which are for GS1."
Unless it's particularly interesting or unique, I don't really see any place for GS1 here. This code is not a good example for others and shouldn't be used on a server. It doesn't serve either of the purposes of the Code Gallery.

If the code was something unique and not seen before, it would be a different story. However, with this particular piece of code, people would be raising the same objections (it's not useful on a server or for learning) even if it was written in GS2.
__________________
Reply With Quote
  #8  
Old 06-20-2012, 10:31 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by cbk1994 View Post
Unless it's particularly interesting or unique, I don't really see any place for GS1 here. This code is not a good example for others and shouldn't be used on a server. It doesn't serve either of the purposes of the Code Gallery.

If the code was something unique and not seen before, it would be a different story. However, with this particular piece of code, people would be raising the same objections (it's not useful on a server or for learning) even if it was written in GS2.
K, so is there anywhere to post good gs1 scripts for if someone wants to use them?
Reply With Quote
  #9  
Old 06-21-2012, 12:12 AM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by E_Man View Post
K, so is there anywhere to post good gs1 scripts for if someone wants to use them?
The GS1 forums.
Reply With Quote
  #10  
Old 06-21-2012, 12:32 AM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by Crow View Post
The GS1 forums.
It says that's only for problems you need help on
Reply With Quote
  #11  
Old 06-21-2012, 05:18 AM
Imperialistic Imperialistic is offline
graal player lord
Imperialistic's Avatar
Join Date: Apr 2007
Location: Florida
Posts: 1,094
Imperialistic is a jewel in the roughImperialistic is a jewel in the rough
i'm really disappointed with the so called present 'developers'

what kind of potential scripter would want to continue advancing and progressing with all of your pessimistic and shitty remarks. Instead of pointing out what he is doing wrong, why can't we just explain to him how to better himself?

all of the sudden everyone acts like a forum mod, just shut up and get off your high horse.
__________________
" It's been swell, but the swelling's gone down. "
Reply With Quote
  #12  
Old 06-21-2012, 05:25 AM
Starfire2001 Starfire2001 is offline
Unholy Nation
Starfire2001's Avatar
Join Date: Dec 2010
Location: The streets.
Posts: 156
Starfire2001 will become famous soon enough
Quote:
Originally Posted by Imperialistic View Post
i'm really disappointed with the so called present 'developers'

what kind of potential scripter would want to continue advancing and progressing with all of your pessimistic and shitty remarks. Instead of pointing out what he is doing wrong, why can't we just explain to him how to better himself?

all of the sudden everyone acts like a forum mod, just shut up and get off your high horse.
Gonna have to disagree with this entirely, from what I've seen people have been pretty nice to this guy in this thread and others.
__________________
-Ph8
Reply With Quote
  #13  
Old 06-21-2012, 02:30 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Imperialistic View Post
i'm really disappointed with the so called present 'developers'

what kind of potential scripter would want to continue advancing and progressing with all of your pessimistic and shitty remarks. Instead of pointing out what he is doing wrong, why can't we just explain to him how to better himself?

all of the sudden everyone acts like a forum mod, just shut up and get off your high horse.
This is a Code Gallery post, not a post looking for help. The Code Gallery isn't intended for feedback on scripts, it's intended for scripts that are finished and can be used by others either to learn from or on their server. This is what he was told.

If you look at his other threads in the scripting forums, you'll see that he received help on most of them; also keep in mind that he's requesting help on a language which a lot of us have done everything possible to forget.
__________________
Reply With Quote
  #14  
Old 06-21-2012, 03:00 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by cbk1994 View Post
also keep in mind that he's requesting help on a language which a lot of us have done everything possible to forget.
I wouldnt' be doing GS1 if I wasn't trial, but since I am, I want to make use of the GS1 Script fourms since they are never used anymore and people still do have knowledge (even if they want to forget it) of gs1. Also there may be others who like that I'm asking about GS1 because they are trial and never got gold which means that they can only do GS1 and they also can't sign up for this forum.
Reply With Quote
  #15  
Old 06-21-2012, 03:17 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by cbk1994 View Post
The Code Gallery isn't intended for feedback on scripts, it's intended for scripts that are finished and can be used by others either to learn from or on their server.
I don't know about you, but I always appreciate feedback on the things I post in the Code Gallery. Anything that can help me improve what I deemed ready is helpful. Comments stroking my ego helps me sleep at night too.

Quote:
Originally Posted by cbk1994 View Post
also keep in mind that he's requesting help on a language which a lot of us have done everything possible to forget.
Just because we despise GS1 doesn't mean we can't/shouldn't help people who are stuck with it. Learning GS1 could likely still be very useful to learn before moving on to GS2 later.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #16  
Old 06-21-2012, 03:28 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by xXziroXx View Post
I don't know about you, but I always appreciate feedback on the things I post in the Code Gallery. Anything that can help me improve what I deemed ready is helpful. Comments stroking my ego helps me sleep at night too.
I don't disagree, just pointing out that the Code Gallery's purpose is not for receiving feedback on scripts you've made. As others have said, it would be perfectly acceptable to post these kind of threads in the GS1 forums.

Quote:
Just because we despise GS1 doesn't mean we can't/shouldn't help people who are stuck with it. Learning GS1 could likely still be very useful to learn before moving on to GS2 later.
I don't disagree here either, just explaining why he's not receiving as much help as he would if his problems were in GS2. Most people around here haven't used GS1 since 2005, myself included.
__________________
Reply With Quote
  #17  
Old 06-21-2012, 04:05 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by cbk1994 View Post
it would be perfectly acceptable to post these kind of threads in the GS1 forums.
Ok, instead of posting GS1 scripts here, I'll post them in the GS1 forum under a new forum named GS1 Code Gallery, I'll make it once I'm finished the script I'm working on. It will be for people who want to post GS1 scripts.
Reply With Quote
  #18  
Old 06-21-2012, 07:03 PM
Imperialistic Imperialistic is offline
graal player lord
Imperialistic's Avatar
Join Date: Apr 2007
Location: Florida
Posts: 1,094
Imperialistic is a jewel in the roughImperialistic is a jewel in the rough
Quote:
Originally Posted by cbk1994 View Post
This is a Code Gallery post, not a post looking for help. The Code Gallery isn't intended for feedback on scripts, it's intended for scripts that are finished and can be used by others either to learn from or on their server. This is what he was told.

If you look at his other threads in the scripting forums, you'll see that he received help on most of them; also keep in mind that he's requesting help on a language which a lot of us have done everything possible to forget.
dude, regardless. He didn't break any rules and clearly labeled the Code as GS1. Just because you don't personally approve of an old scripting language doesn't mean he should be shunned for exercising his development skills and willingness to improve.

Also, without GS1, I wouldn't have known any commands of GS2. I understand that GS1 shouldn't be used anymore on the client. But if a player simply wants to create something offline to share with other players, whats the big deal?
__________________
" It's been swell, but the swelling's gone down. "
Reply With Quote
  #19  
Old 06-21-2012, 09:00 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Imperialistic View Post
dude, regardless. He didn't break any rules and clearly labeled the Code as GS1. Just because you don't personally approve of an old scripting language doesn't mean he should be shunned for exercising his development skills and willingness to improve.
Nobody is shunning him, just asking him to confine GS1-related posts to the GS1 subforum, which he already agreed to . The last thing I would do is encourage someone to give up, which is why I've been a proponent of Testbed and tried to help E_Man get gold so he could use it.

Quote:
Also, without GS1, I wouldn't have known any commands of GS2. I understand that GS1 shouldn't be used anymore on the client. But if a player simply wants to create something offline to share with other players, whats the big deal?
I'm not trying to start a debate over the merits of GS1; it's how I got started as well. And who said anything about a big deal? All I said was that in general, I don't think GS1 scripts belong in the code gallery unless they are particularly interesting or unique; let me reiterate:

Quote:
Originally Posted by cbk1994 View Post
with this particular piece of code, people would be raising the same objections (it's not useful on a server or for learning) even if it was written in GS2.
__________________
Reply With Quote
  #20  
Old 06-21-2012, 09:04 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by Imperialistic View Post
i'm really disappointed with the so called present 'developers'

what kind of potential scripter would want to continue advancing and progressing with all of your pessimistic and shitty remarks. Instead of pointing out what he is doing wrong, why can't we just explain to him how to better himself?

all of the sudden everyone acts like a forum mod, just shut up and get off your high horse.
I have to say I fully agree with this post. Yes, I logged on to post this.
__________________
Reply With Quote
  #21  
Old 06-21-2012, 09:20 PM
Fulg0reSama Fulg0reSama is offline
Extrinsical Anomaly
Fulg0reSama's Avatar
Join Date: Sep 2009
Location: Ohio
Posts: 3,049
Fulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant future
Quote:
Originally Posted by Chompy View Post
I have to say I fully agree with this post. Yes, I logged on to post this.
This is why I love you Chompy.
__________________

Careful, thoughts and opinions here scare people.
Reply With Quote
  #22  
Old 06-22-2012, 09:56 AM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by Chompy View Post
I have to say I fully agree with this post. Yes, I logged on to post this.
It's really only a handful of unhelpful people who often post negative things (and I'm not talking about cbk1994 - who is one of the most helpful people on these forums). I would go as far as to say that, in general, the scripting subform is -the- most helpful subforum on the entire forums. It's very rare that someone posts here and doesn't walk away with some kind of constructive feedback.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #23  
Old 06-22-2012, 10:15 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Eh, most of his other(many) threads about scripting have gotten a lot of help. I see no reason why someone would jump to the conclusion he is being pushed away just because this thread has taken a less than positive direction.
Reply With Quote
  #24  
Old 06-22-2012, 04:06 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Chompy View Post
I have to say I fully agree with this post. Yes, I logged on to post this.
If I've come off as being pessimistic and giving shitty remarks then I really do apologize—the last thing I want to do is discourage others from learning GScript. That wasn't my intention at all.
__________________
Reply With Quote
  #25  
Old 06-22-2012, 11:46 PM
Imperialistic Imperialistic is offline
graal player lord
Imperialistic's Avatar
Join Date: Apr 2007
Location: Florida
Posts: 1,094
Imperialistic is a jewel in the roughImperialistic is a jewel in the rough
Chris why are you taking such offense to this, nothing I said was implied to any person as an individual. I was talking about developers as a whole, including me!

Now if you actually want to get into the subject of you pushing away others from learning ;

Quote:
This code is not a good example for others and shouldn't be used on a server.
Uh, who are you to decide if a script is a good example or not?

Quote:
If the code was something unique and not seen before, it would be a different story.
Uh, only unique scripts are allowed to be posted in GS1 in the code gallery? Show me this rule

Quote:
(it's not useful on a server or for learning)
Uh, again, who are you to decide if a script is useful to others or not?



*No pun intended Chris, you're a great developer and very helpful, just think about what you say before you say it*
__________________
" It's been swell, but the swelling's gone down. "
Reply With Quote
  #26  
Old 06-23-2012, 12:13 AM
ff7chocoboknight ff7chocoboknight is offline
Skyzer Zolderon
ff7chocoboknight's Avatar
Join Date: Dec 2006
Location: New Hampshire, United States
Posts: 725
ff7chocoboknight is a name known to allff7chocoboknight is a name known to allff7chocoboknight is a name known to allff7chocoboknight is a name known to all
Send a message via AIM to ff7chocoboknight Send a message via MSN to ff7chocoboknight
Quote:
Originally Posted by Imperialistic View Post
Chris why are you taking such offense to this, nothing I said was implied to any person as an individual. I was talking about developers as a whole, including me!

Now if you actually want to get into the subject of you pushing away others from learning ;



Uh, who are you to decide if a script is a good example or not?



Uh, only unique scripts are allowed to be posted in GS1 in the code gallery? Show me this rule



Uh, again, who are you to decide if a script is useful to others or not?



*No pun intended Chris, you're a great developer and very helpful, just think about what you say before you say it*
ROFL You're joking, right?
__________________
Reply With Quote
  #27  
Old 06-23-2012, 01:32 AM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by cbk1994 View Post
If I've come off as being pessimistic and giving shitty remarks then I really do apologize—the last thing I want to do is discourage others from learning GScript. That wasn't my intention at all.
These negative comments won't discourage me, this is because I am ok with this script because it works just like I wanted to (other than the fire looking a bit choppy). I just posted this here to help people offline, I'm new to scripting so it probably won't be the best script, but it is still useful and people may want this.
__________________
Reply With Quote
  #28  
Old 06-23-2012, 01:55 AM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by E_Man View Post
These negative comments won't discourage me, this is because I am ok with this script because it works just like I wanted to (other than the fire looking a bit choppy). I just posted this here to help people offline, I'm new to scripting so it probably won't be the best script, but it is still useful and people may want this.
However, there is a poll, so you don't need to lower my reputation because that does discourage me from posting.



(Btw, what happens if my reputation gets down to zero, will I lose posting rights or something?)
__________________

Last edited by E_Man; 06-23-2012 at 02:09 AM..
Reply With Quote
  #29  
Old 06-23-2012, 02:43 AM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by E_Man View Post
However, there is a poll, so you don't need to lower my reputation because that does discourage me from posting.
I don't know why anyone would give you negative reputation from any of the posts you've made so far, it's refreshing to see someone progress that seems genuinely interested in learning how to program.

Quote:
Originally Posted by E_Man View Post
(Btw, what happens if my reputation gets down to zero, will I lose posting rights or something?)
Nothing changes, you'll just go into negative values and have your reputation boxes become red.


In any case, I gave you some positive rep to counteract the bastard who negative repped you.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #30  
Old 06-23-2012, 03:29 AM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by cbk1994 View Post
If I've come off as being pessimistic and giving shitty remarks then I really do apologize—the last thing I want to do is discourage others from learning GScript. That wasn't my intention at all.
The intention of my post was not to point fingers at individuals, but the scripting community here on the forum as a whole. I was very active here on the scripting forums before and I have from time to time seen (during my time not being logged on and browsing here when not occupied with work and university) posts that could have had a few words changed and a sentence written a little different to get the message through a less supposed "negative" way.

If I were to point the finger at you Chris, it's for coming with the "shitty remarks" when the OP (Not talking about this thread) had it coming. Kudos actually.

Quote:
Originally Posted by Tigairius View Post
It's really only a handful of unhelpful people who often post negative things (and I'm not talking about cbk1994 - who is one of the most helpful people on these forums). I would go as far as to say that, in general, the scripting subform is -the- most helpful subforum on the entire forums. It's very rare that someone posts here and doesn't walk away with some kind of constructive feedback.
The scripting forum is one of the most active sub-forums here at the Graalonline Forums. It's also a place where scripters get to "mark" their territory and showcase their knowledge often in a constructive way. Sometimes this goes the other way and some end up on their high horse and can be seen answering in a manner which can easily be misunderstood as being negative instead of constructive. It's all a matter of how one sees the constructive message, but it depends on the relations between the OP and the poster itself aswell.

There are lots of people on here who should read up on what "constructive feedback" really means, how to give it and how to receive it and use it to help yourself progress further and find flaws within your own logic (especially when it comes to scripting(/programming)).
__________________
Reply With Quote
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 +2. The time now is 02:36 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.