Register for your free account! | Forgot your password?

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

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

Advertisement



PM Item: Spawn Monsters

Discussion on PM Item: Spawn Monsters within the EO PServer Hosting forum part of the Eudemons Online category.

Reply
 
Old   #1
 
cruey's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 698
Received Thanks: 855
Talking PM Item: Spawn Monsters

Hey guys, this is like version 2 or whatever of my moderator item release. Now i'll explain how it works:

Awhile ago I released an item that spawns monsters but some people didn't use it because they had to completely replace their cq_action tables and itemtype.dats so I changed the way to do it and this time ill just edit what an item does. Okay so, theres an item thats called HoneyCake. I assume that TQ has used it for a christmas events but because we don't use it anymore I'll show you how to edit it into a moderator item. Here are the steps:

1) Run this query but change "monsterid" to the monster ID found in your cq_monstertype table, like SpiderQueen is 40001
Quote:
UPDATE `cq_action` SET `id_next`='0', `id_nextfail`='0', `type`='2006', `data`='0', `param`='0 0 %user_map_id %user_map_x %user_map_y 2412000 monsterid' WHERE (`id`='7083010') LIMIT 1
2) Go into your server and get the Honey Cake item with this command:
Quote:
/awarditem 743021 HoneyCake
3) Before using the item use this command if you had your server up when implementing the Mod Spawn Item:
Quote:
/reloadaction 0
4) Right click or use the item and the monster connected to the ID you put in will spawn where you are standing and whalah! You have your monster.



Brought to you by Devils Advocate Online, reply to this thread with questions if you need answers.


UPDATING THE MONSTER:

If you need to change what monster is spawned using the item, change 'monsterid' to the new monster ID and use this query:

Quote:
UPDATE cq_action SET param='0 0 %user_map_id %user_map_x %user_map_y 2412000 monsterid' WHERE (`id`='7083010')
Thanks to hio77 for the help.
Attached Images
File Type: jpg screenie.jpg (47.9 KB, 638 views)
cruey is offline  
Thanks
16 Users
Old 11/11/2009, 02:58   #2
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 539
Awesome! i was looking for something like this xD


lol it works and its fun ^^
.Ash is offline  
Old 11/11/2009, 04:30   #3
 
elite*gold: 0
Join Date: Oct 2009
Posts: 94
Received Thanks: 25
Thats sweet o.o
I Am Murtah is offline  
Old 11/11/2009, 04:36   #4
 
hio77's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 1,759
Received Thanks: 825
Code:
/reloadaction 7083010
0 will reload all actions and just cause lag...

as for using an item ... its not hard at all to make a whole new one .... all the tools are easily available here now thanks to funhacker

also you only need to update the parma
Code:
UPDATE cq_action SET param='0 0 %user_map_id %user_map_x %user_map_y 2412000 [B]monsterid[/B]' WHERE (`id`='7083010')
so of this could be wrong its written off the top of my head..
hio77 is offline  
Thanks
1 User
Old 11/11/2009, 05:02   #5
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 539
For me, putting the item in the quick slots and just pressing is way easier than remembering the action ID... o.O
.Ash is offline  
Old 11/11/2009, 07:29   #6
 
hio77's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 1,759
Received Thanks: 825
Quote:
Originally Posted by SpongeBox View Post
For me, putting the item in the quick slots and just pressing is way easier than remembering the action ID... o.O
what i posted was for changing the monster ....
hio77 is offline  
Old 11/11/2009, 08:58   #7
 
cruey's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 698
Received Thanks: 855
You are correct hio77, but I changed the other parts of the action because originally the HoneyCake or whatever is linked to other actions that heal the user of the item. So with my query it takes off extra action links and just uses the spawn thing. But if you were correcting something in the query then thats all good im not the best with queries or whatever I just copied it from my status bar thing, let me know if theres some kind of mistake.

I'll copy your query though and put it in the first post to help people if their just updating the monster and thanks.

By the way guys, I found the monster spawning uhmmm, what to call it... template? layout? anyway I got it from a rabbit NPC in the DarkCastle quest for those of you who are wondering. But do you know what I mean by layout/template whatever? I don't know what the best word for it is, what do you reckon?
cruey is offline  
Old 11/11/2009, 20:10   #8
 
hio77's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 1,759
Received Thanks: 825
Quote:
Originally Posted by cruey View Post
You are correct hio77, but I changed the other parts of the action because originally the HoneyCake or whatever is linked to other actions that heal the user of the item. So with my query it takes off extra action links and just uses the spawn thing. But if you were correcting something in the query then thats all good im not the best with queries or whatever I just copied it from my status bar thing, let me know if theres some kind of mistake.

I'll copy your query though and put it in the first post to help people if their just updating the monster and thanks.

By the way guys, I found the monster spawning uhmmm, what to call it... template? layout? anyway I got it from a rabbit NPC in the DarkCastle quest for those of you who are wondering. But do you know what I mean by layout/template whatever? I don't know what the best word for it is, what do you reckon?
have to querys .... a setup one and a update lol
hio77 is offline  
Old 11/11/2009, 20:43   #9
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 539
Quote:
Originally Posted by hio77 View Post
what i posted was for changing the monster ....
you have to pardon me.. im natually high sometimes X_X
.Ash is offline  
Old 11/13/2009, 17:30   #10
 
matrix89's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 345
Received Thanks: 114
Quote:
UPDATE cq_action SET param='0 0 %user_map_id %user_map_x %user_map_y 2412000 monsterid' WHERE (`id`='7083010')

This code can add monster in new map??
matrix89 is offline  
Old 11/13/2009, 17:32   #11
 
elite*gold: 0
Join Date: Nov 2009
Posts: 232
Received Thanks: 61
Quote:
Originally Posted by matrix89 View Post
This code can add monster in new map??
no it can't
RevolutionEO is offline  
Thanks
1 User
Old 11/13/2009, 17:35   #12
 
matrix89's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 345
Received Thanks: 114
Quote:
Originally Posted by RevolutionEO View Post
no it can't
owh..where can i find release to add monster in map...
when i search it...he say not found..

is ok..
i found it...this ->
matrix89 is offline  
Old 07/25/2010, 12:52   #13
 
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 80
hey i know im openning up old posts but this isint working for me im not sure why any ideas?
Crazy123456 is offline  
Old 07/27/2010, 01:40   #14
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 539
Cuz you are using the new DB..
.Ash is offline  
Old 07/27/2010, 07:09   #15
 
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 80
no im not im using a old DB. i have the item and every i used the query cq_action looks like its working when i right click it but no monster spawn.
Crazy123456 is offline  
Reply


Similar Threads Similar Threads
Monsters do not spawn
01/10/2011 - EO PServer Hosting - 7 Replies
http://www.elitepvpers.com/forum/eo-pserver-guides- releases/624499-guide-putting-monsters-into-maps.h tml I used my own guide to create a map for a friend, but the monsters will not spawn. All the db side has been checked, double checked and checked again. Corrections made, id lowered on monsters and spawn id, but still no spawning. Any clues?
[HELP]Monsters time to spawn
05/04/2010 - CO2 Private Server - 13 Replies
Can anyone tell me how to make a timer (example to spawn ganoderma/titan) every 1 hour? I have the ganoderma and titan inserted in the database but I don't know how to spawn them from the source (LOTF) The thing I want is how to create a timer to spawn them (1 of the 4 ganodermas/titans inserted in the db (differing by level))
Spawn Locations For Monsters
06/11/2009 - RFO Hacks, Bots, Cheats, Exploits & Guides - 11 Replies
ACC Spawn Locations These are on the main Acc Map Name Coordinates Adult Stinkbug J11-12 , K10, K12 Arghol T-U 8 Arghol Drone (Pitboss) V6 ArgholGuard V6 Argholquich S-R 10-11 Argholquich (ACE) D12
[Release] Moderator Item: Spawn Monsters!
12/18/2008 - EO PServer Guides & Releases - 10 Replies
This item that I have released will spawn a monster wherever the person is standing. Simply download the database and client side files via the atachment and then spawn the item: /awarditem 724031 To change the monster that you would like to spawn follow these steps. Through Navicat Lite open cq_monstertype. If you have a certain monster that you would like to spawn then press ctrl+f and type in the name of that monster, then look to the left to find the ID. Copy it because you will need...
Spawn Monsters does not work.. WHY ?!
11/16/2008 - EO PServer Hosting - 2 Replies
Hey all.... I made my own PServer yesterday.. all warks good. But i have 1 PROBLEM i cant spawn Monster. i used these commands but nothing happens: /testmonster /createmonster Is there anything i should know ?! plz hel me :(



All times are GMT +1. The time now is 07:21.


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.