Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Eudemons Online > EO PServer Hosting
You last visited: Today at 05:07

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Anyone know how to add NPC that sells unis?

Discussion on Anyone know how to add NPC that sells unis? within the EO PServer Hosting forum part of the Eudemons Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2008
Posts: 218
Received Thanks: 134
Anyone know how to add NPC that sells unis?

Im not really familiar with adding new NPC. But I dont want to get rid of anything in shopping mall so I wanted to make a NPC that would sell uni 6*,
8*, 12*, 22*, and 29*. Can someone maybe show me how to do this?
revolution263 is offline  
Old 02/12/2009, 23:00   #2
 
dani-filth0's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 1,128
Received Thanks: 260
there was a script released on all things guide by necron , its there just open it and run the script
dani-filth0 is offline  
Old 02/12/2009, 23:49   #3
 
elite*gold: 0
Join Date: Mar 2008
Posts: 218
Received Thanks: 134
I been threw that guide many times. Only scripts I saw were for 3x exp potions and special xp *****.
revolution263 is offline  
Old 02/13/2009, 00:43   #4
 
dani-filth0's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 1,128
Received Thanks: 260
- Deleted -
dani-filth0 is offline  
Old 02/13/2009, 02:18   #5
 
elite*gold: 0
Join Date: Mar 2008
Posts: 218
Received Thanks: 134
Are you a ****** idiot?!?!?!?! I said NPC to sell UNI'S!!! Not xp *****, I already said that was there..... Maybe you should look harder not me.
revolution263 is offline  
Old 02/13/2009, 03:22   #6
 
dani-filth0's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 1,128
Received Thanks: 260
sry my bad , but there is an NPC is sellin expball and unis that all what available on this forum
dani-filth0 is offline  
Old 02/13/2009, 06:49   #7
 
elite*gold: 0
Join Date: Apr 2008
Posts: 221
Received Thanks: 79
why don't you just put it at the shopping mall.
saves you the trouble of making a new npc.
lightnin86 is offline  
Old 02/13/2009, 08:05   #8
 
DiobloSlayeR's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 802
Received Thanks: 336
Quote:
Originally Posted by lightnin86 View Post
why don't you just put it at the shopping mall.
saves you the trouble of making a new npc.
Agree. Anyway revolution, check out E.M.E's guide about adding stuff to mall / cyberghoser1's guide about replacing items, it should be alot easier for you, and your players when the uni's are n the mall.
DiobloSlayeR is offline  
Old 02/13/2009, 08:30   #9
 
elite*gold: 0
Join Date: Mar 2008
Posts: 218
Received Thanks: 134
Quote:
Originally Posted by DiobloSlayeR View Post
Agree. Anyway revolution, check out E.M.E's guide about adding stuff to mall / cyberghoser1's guide about replacing items, it should be alot easier for you, and your players when the uni's are n the mall.
Well I gave a shot at the shopping mall with hex editor. I thought I did everything right..... Didnt work, so I tried again. Same thing. But what I did do was I used the 3x exp potion from necron all things guide, and replaced the potions with 19* unis. And switched the price. Turned out fine. I will release it when I get home in the morning. Just for those who had the same problem as me. xD But thanks Murtah for the help on msn, and Dani for "trying to help" :P
revolution263 is offline  
Old 02/24/2009, 08:59   #10
 
suanni's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 85
Received Thanks: 3
hex edit the shop.dat to remove or add new items. i recommend WinHex. you can search google to find the download. and here are the guides that i learned how to hex edit with

Replacing items:

Adding new items:

hope it helps. thanks cyber as well.
suanni is offline  
Old 02/25/2009, 10:19   #11
 
elite*gold: 0
Join Date: Sep 2008
Posts: 806
Received Thanks: 321
Angry

Quote:
Originally Posted by revolution263 View Post
Are you a fuckin idiot?!?!?!?! I said NPC to sell UNI'S!!! Not xp balls, I already said that was there..... Maybe you should look harder not me.
Don\t Flame when you don't know anything about SQL Query
This NPC will Sell 12 star uni for 1k EP Hope you like it and Don't Flame again

NOTE: IF YOU HAVE ALREADY ADDED THE X3 POTION SELLER THIS WILL REPLACE IT

Code:
delete from cq_action where id >= 50000100 and id <= 50000112;
delete from cq_npc where id = 1551 ;
delete from cq_task where id = 50000100;
delete from cq_task where id = 50000103;
delete from cq_task where id = 50000105;

INSERT INTO `cq_npc` VALUES ('1551', '0', '0', 'UNIXoSeller', '0002', '15500', '0', '0', '-1', '1000', '0304', '0472', '50000100', '0000', '0000', '0000', '0000', '0000', '0000', '0000', '0', '0', '0', '0', '?T', '0000', '00', '00', '0000', '01', '0000', '0000', '0000', '0000', '0000');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000100, 50000101, 0000, 0101, 0, 'My~name~is~MagePeppy.~Would~you~buy~12~star~uniXO?');

INSERT INTO cq_action

(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000101, 50000102, 0000, 0102, 0, 'I~would~like~one~12~star~uniXO~for~10k~EPs. 50000103');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000102, 4000033, 0000, 0102, 0, 'Sorry~i~want~to~think~first. 0');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000103, 50000105, 50000104, 0508, 0, '1 0 50');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000104, 0000, 0000, 0126, 0, 'You~do~not~have~one~space~in~your~package!');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000105, 50000106, 50000108, 1001, 0, 'e_money < 1000');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000106, 50000107, 0000, 0101, 0, 'You~do~not~have~enough~EP~to~buy~a~12~star~uniXO. ~Come~back~when~you~do.');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000107, 4000033, 0000, 0102, 0, 'Sorry,~I~go~and~hunt~some. 0');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000108, 50000109, 0000, 0501, 813000, '');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000109, 50000110, 0000, 1085, 0, 'gmlog/action_log 330,%user_name[%user_id],0,1059,813000,0,0,0,50000100,0');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000110, 50000111, 0000, 1001, 0, 'e_money += -1000');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000111, 50000112, 0000, 0101, 0, 'Thank~You~for~buying~12~star~uniXO.~Hope~to~see~you~again.');

INSERT INTO cq_action
(`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`)
VALUES
(50000112, 4000033, 0000, 0102, 0, 'You~Welcomed 0');




INSERT INTO `cq_task` VALUES ('50000105', '50000105', '0000', '', '', '0', '0', '999', '-100000', '100000', '0999', '0000', '0', '-1', '0');
INSERT INTO `cq_task` VALUES ('50000100', '50000100', '0000', '', '', '0', '0', '999', '-100000', '100000', '0999', '0000', '0', '-1', '0');
INSERT INTO `cq_task` VALUES ('50000103', '50000103', '0000', '', '', '0', '0', '999', '-100000', '100000', '0999', '0000', '0', '-1', '0');
Spy520 is offline  
Old 02/25/2009, 20:32   #12
 
PhantomNyte's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 345
Received Thanks: 178
give him a script some time ago so no need for this one
PhantomNyte is offline  
Old 02/25/2009, 21:48   #13
 
elite*gold: 0
Join Date: Sep 2008
Posts: 806
Received Thanks: 321
Ok
Spy520 is offline  
Reply


Similar Threads Similar Threads
WTB Unis on Archon!!!
09/08/2010 - Archlord Trading - 7 Replies
Hey, Looking for Int Shuta,Blode,Kark on the Server Archon i pay in WP or Paysafe Also sell: 1x Kark with stamina lvl 3 2x Blodes with Stamina lvl 3 Pm me or add me in Msn [email protected]
Unis problem?
08/03/2010 - EO PServer Hosting - 0 Replies
Before the unis worked perfectly fine, now when you click the uni box, they dont appear in with your pets. I did not mess with the cq_action and the cq_Action is working fine otherwise the unis. Plz help. :) EDIT!!@#!@#!@#!@#!#! Fixed by backing up my cq_eudemon.
Elementalist vs unis
01/05/2010 - Archlord Trading - 1 Replies
Hello wanna trade my lv8x ele full realm psn/light with nice stats + archer 66 on same account vs shuta or blode. Archer is rogue, ele lv1 rogue need 10 letters tough can be unrogue if u want. Comes with some wc. Ele got luke bound + proof of destroyer + 2x gauds. I want blode/shuta on cyp for it, also email account included.
[Help] Problems in Unis
09/04/2009 - EO PServer Hosting - 4 Replies
when i give any unis thunder Juice it's decreased by 5 star so if it 25* and i give it thunder juice it's back to 20*
29* box unis
09/09/2008 - EO PServer Hosting - 4 Replies
does any1 know how can i make the 29* box unis pe 30*+ when the are opend



All times are GMT +2. The time now is 05:07.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.