[RELEASE]SantaClaus giving out Xmass Hats for males/females.

12/23/2009 04:45 RevolutionEO#1
Hey everyone i've made this Santa Claus NPC to give out Xmass hats for females and males as it's my first release here i guess it's pretty good(just my opinion) well i've seen some releases to do with this before but it as sort of hard to understand so here it is. ALL YOU HAVE TO DO IS COPY IT AND PASTE IT INTO CQ_ACTION..CQ_NPC AND CQ_TASK.

Code:
cq_action

4050	4051	0	101	0	Ho!~Ho!~Ho!~Hello~there~%user_name!~Christmas~has~come~again~so~i~guess~it's~time~to~lolok~like~me.
4051	4052	0	101	0	Would~you~like~to~Get~a~santa~hat?~Please~select~which~sex~would~you~like~your~hat~to~be.
4052	4053	0	102	0	Male~please. 4055
4053	4054	0	102	0	Female~please. 4056
4054	4000015	0	102	0	No~thanks. 0
4055	0	0	1005	0	style 135
4056	0	0	1005	0	style 141
Code:
cq_npc

2760	0	0	SantaClaus	2	57487	0	0	-1	1000	265	501	4050	0	0	0	0	0	0	0	0	0	0	0	нч	0	0	0	0	0	0	0	0	0	0
Code:
cq_task

4050	4050	0			0	0	999	-100000	100000	999	999	0	-1	0
4051	4051	0			0	0	999	-100000	100000	999	999	0	-1	0
4052	4052	0			0	0	999	-100000	100000	999	999	0	-1	0
4053	4053	0			0	0	999	-100000	100000	999	999	0	-1	0
4054	4054	0			0	0	999	-100000	100000	999	999	0	-1	0
4055	4055	0			0	0	999	-100000	100000	999	999	0	-1	0
4056	4056	0			0	0	999	-100000	100000	999	999	0	-1	0
Hope you like it so just put this into your db restart server and go to sodar to get your xmass hat.
12/23/2009 07:06 timanator200#2
Really cool if it works. I shall try it! Great for your first release.
12/23/2009 08:56 funhacker#3
Quote:
Originally Posted by RevolutionEO View Post
Hey everyone i've made this Santa Claus NPC to give out Xmass hats for females and males as it's my first release here i guess it's pretty good(just my opinion)
Any release is a release and appreciated here.

Quote:
Originally Posted by cruey View Post
lol
Seriously? What is the point of posting "lol"? I think that goes beyond spam.
12/23/2009 10:03 r_o_d_y#4
thats great gratz and merry xmas , but your server is down i think check it out
12/23/2009 10:38 hio77#5
Quote:
Originally Posted by RevolutionEO View Post
Hey everyone i've made this Santa Claus NPC to give out Xmass hats for females and males as it's my first release here i guess it's pretty good(just my opinion) well i've seen some releases to do with this before but it as sort of hard to understand so here it is. sodar to get your xmass hat.
this is kinda funny lol i added the same thing to my server a few weeks ago (though we have more than the red hat in it) its even at the sodar aswell lol!

nice release though

Quote:
Originally Posted by cruey View Post
lol
spam much .... such a waste of a post
12/23/2009 11:40 RevolutionEO#6
Quote:
Originally Posted by cruey View Post
lol
I know why you're saying that is it because something like it before was released? trust me i'm not a lazy guy and i do search all the time so i don't duplicate a release.

Quote:
Originally Posted by r_o_d_y View Post
thats great gratz and merry xmas , but your server is down i think check it out
Merry xmass to you too, the server is down while it's being moved to a new host.
12/23/2009 14:41 Singh_Is_King#7
finally now everyone can have the santa hat :D
01/22/2011 19:25 ~Sword~Stalker~.#8
would be better in queries:-
cq_action
Quote:
INSERT INTO `cq_action` (`id`, `id_next`, `type`, `param`) VALUES ('4050', '4051', '101', 'Ho!~Ho!~Ho!~Hello~there~%user_name!~Christmas~has ~come~again~so~i~guess~it\'s~time~to~lolok~like~me .');
INSERT INTO `cq_action` (`id`, `id_next`, `type`, `param`) VALUES ('4051', '4052', '101', 'Would~you~like~to~Get~a~santa~hat?~Please~select~ which~sex~would~you~like~your~hat~to~be.');
INSERT INTO `cq_action` (`id`, `id_next`, `type`, `param`) VALUES ('4052', '4053', '102', 'Male~please. 4055');
INSERT INTO `cq_action` (`id`, `id_next`, `type`, `param`) VALUES ('4053', '4054', '102', 'Female~please. 4056');
INSERT INTO `cq_action` (`id`, `id_next`, `type`, `param`) VALUES ('4054', '4000015', '102', 'No~thanks. 0');
INSERT INTO `cq_action` (`id`, `type`, `param`) VALUES ('4055', '1005', 'style 135');
INSERT INTO `cq_action` (`id`, `type`, `param`) VALUES ('4056', '1005', 'style 141');
cq_npc

Quote:
INSERT INTO `cq_npc` (`id`, `name`, `type`, `lookface`, `mapid`, `cellx`, `celly`, `task0`) VALUES ('1323', 'SantaClaus', '2', '57487', '1000', '265', '501', '4050');
cq_task:-
Quote:
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4050', '4050', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4051', '4051', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4052', '4052', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4053', '4053', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4054', '4054', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4055', '4055', '999', '-100000', '100000', '999');
INSERT INTO `cq_task` (`id`, `id_next`, `sex`, `min_pk`, `max_pk`, `team`) VALUES ('4056', '4056', '999', '-100000', '100000', '999');
BestRegards ;)
01/22/2011 21:50 keithbell17#9
Old post grrr
01/23/2011 10:49 ~Sword~Stalker~.#10
Quote:
Originally Posted by keithbell17 View Post
Old post grrr
most of memmbers asked me about it

2- im adding more info , not saying .... as thanks , its soo good