|
You last visited: Today at 11:29
Advertisement
error in my sql??
Discussion on error in my sql?? within the EO PServer Hosting forum part of the Eudemons Online category.
07/31/2010, 08:53
|
#1
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
error in my sql??
hey guys im trying to add some new euds and its not reading my cq_action :S if u guys can find anything wrong in my query please feel free to edit
Quote:
delete from cq_action where id >= 7297290 and id <= 7297295;
insert into cq_action (id,id_next,id_nextfail,type,data,param)
values
(7297290,7267291,7267294,508,0,'1 0 52'),
(7297291,7297292,0,502,729420,''),
(7297292,7297293,0,501,1081760,''),
(7297293,7297295,0,1085,0,'gmlog/action_log 380,%user_name[%user_id],0,0,1082960,0,0,729452,0,0'),
(7297294,0,0,126,0,'Please~make~one~space~in~your~ eudemon~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~eudemo n~egg!');
|
and heres a cq_action thats actually working
Quote:
7294590: [7294591,7294594]. type[508], data[0], param:[1 0 52].[2:48]
7294591: [7294592,0]. type[502], data[729423], param:[].[2:48]
7294592: [7294593,0]. type[501], data[1081630], param:[].[2:48]
7294593: [7294595,0]. type[1085], data[0], param:[gmlog/action_log 380,[PM][1],0,0,1081630,0,0,729423,0,0].[2:48]
7294595: [0,0]. type[126], data[0], param:[Congratulations!~You~have~obtained~an~Eudemon~egg!].[2:48]
|
|
|
|
07/31/2010, 09:06
|
#2
|
elite*gold: 0
Join Date: Jul 2009
Posts: 136
Received Thanks: 13
|
When you ran the query, there is no duplicate entries right?
EDIT::: Try this query
Code:
delete from cq_action where id >= 7297290 and id <= 7267291;
delete from cq_action where id >= 7297291 and id <= 7267292;
delete from cq_action where id >= 7297292 and id <= 7267293;
delete from cq_action where id >= 7297293 and id <= 7267294;
delete from cq_action where id >= 7297294 and id <= 0;
delete from cq_action where id >= 7297295 and id <= 0;
insert into cq_action (id,id_next,id_nextfail,type,data,param)
values
(7297290,7267291,7267294,508,0,'1 0 52'),
(7297291,7297292,0,502,729420,''),
(7297292,7297293,0,501,1081760,''),
(7297293,7297295,0,1085,0,'gmlog/action_log 380,%user_name[%user_id],0,0,1082960,0,0,729452,0,0'),
(7297294,0,0,126,0,'Please~make~one~space~in~your~eudemon~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~eudemon~egg!');
Note: this query was off the top of my head, so it may be slightly wrong  hope i helped
|
|
|
07/31/2010, 09:08
|
#3
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
ofcourse it didnt duplicate i delete the action ids before and always check if the ids already in use
|
|
|
07/31/2010, 09:16
|
#4
|
elite*gold: 0
Join Date: Jul 2009
Posts: 136
Received Thanks: 13
|
Quote:
Originally Posted by Crazy123456
ofcourse it didnt duplicate i delete the action ids before and always check if the ids already in use
|
Please try running the query in my post above, and try again. Just to make sure because you may have typed it wrong? im not too sure, just trying to help
|
|
|
07/31/2010, 09:17
|
#5
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
no thanks i didnt type it wrong im not using someone else query to delete my ids just incase also ur typing up alot of work doing it that way u can just do this
Quote:
|
delete from cq_action where id >= 7297290 and id <= 7297295;
|
|
|
|
07/31/2010, 09:18
|
#6
|
elite*gold: 0
Join Date: Jul 2009
Posts: 136
Received Thanks: 13
|
Okay, sorry I couldn't help
EDIT::
Actually i looked at your query again, and i don't know if this would effect it ( im kinda new ) but if you look you typed
delete from cq_action where id >= 7297290 and id <= 7297295;
insert into cq_action (id,id_next,id_nextfail,type,data,param)
values
(7297290,7267291,7267294,508,0,'1 0 52'),
(7297291,7297292,0,502,729420,''),
(7297292,7297293,0,501,1081760,''),
(7297293,7297295,0,1085,0,'gmlog/action_log 380,%user_name[%user_id],0,0,1082960,0,0,729452,0,0'),
(7297294,0,0,126,0,'Please~make~one~space~in~your~ (SPACE NOT NEEDED)eudemon~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~eudemo (space not needed)n~egg!');
|
|
|
07/31/2010, 09:21
|
#7
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
thanks anyways atleast ur trying
|
|
|
07/31/2010, 09:22
|
#8
|
elite*gold: 0
Join Date: Jul 2009
Posts: 136
Received Thanks: 13
|
Read my post above this one.
EDIT: Do you have MSN? I can try to help more on there :\
|
|
|
07/31/2010, 09:51
|
#9
|
elite*gold: 0
Join Date: Nov 2009
Posts: 1,486
Received Thanks: 919
|
Code:
delete from cq_action where id >= 7297290 and id <= 7297295;
insert into cq_action (id,id_next,id_nextfail,type,data,param)
values
(7297290,7267291,7267294,508,0,'1 0 52'),
(7297291,7297292,0,502,729420,''),
(7297292,7297293,0,501,1081760,''),
(7297293,7297295,0,1085,0,'gmlog/action_log 380,%user_name[%user_id],0,0,[COLOR="Red"]1081760[/COLOR],0,0,[COLOR="Red"]729420[/COLOR],0,0'),
(7297294,0,0,126,0,'Please~make~one~space~in~[COLOR="Red"](space not needed)[/COLOR]your~eudemo[COLOR="Red"](space not needed)[/COLOR]n~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~eudemon~egg!');
|
|
|
07/31/2010, 10:08
|
#10
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
Quote:
insert into cq_itemtype (id,name,monopoly,price,id_action,dodge,amount,amo unt_limit,gem1,hitrate,monster_type,able_mask,exp_ type,emoney,official1,official2,official3,official 4,official5)
values
('729452', 'ElementalTiger', '28', '3000000', '7297290', '0000', '1', '1', '00', '00000', '1082960', '0', '0', '30000', '00', '00', '00', '00', '00'),
('1082960', 'ElementalTiger', '40', '0000000', '0000000', '0000', '1', '1', '00', '00000', '0000000', '0', '0', '00', '00', '00', '00', '00', '00'),
('1072960', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '72960', '7', '1', '00', '11', '21', '31', '41', '51'),
('1072961', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '72961', '7', '1', '00', '11', '21', '31', '41', '51'),
('1072962', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '72962', '7', '1', '00', '11', '21', '31', '41', '51'),
('1076960', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '76960', '7', '1', '00', '11', '21', '31', '41', '51'),
('1076961', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '76961', '7', '1', '00', '11', '21', '31', '41', '51'),
('1076962', 'ElementalTiger', '00', '0000250', '0000000', '3000', '1', '1', '32', '10000', '76962', '7', '1', '00', '11', '21', '31', '41', '51');
|
this may be the problem ? hmmm
|
|
|
07/31/2010, 10:24
|
#11
|
elite*gold: 0
Join Date: Jul 2009
Posts: 136
Received Thanks: 13
|
yes but there is an error in those codes, you put spaces were spaces arent needed, read my post above and then look at yours.
|
|
|
07/31/2010, 10:35
|
#12
|
elite*gold: 0
Join Date: Dec 2009
Posts: 220
Received Thanks: 59
|
~(SPACE NOT NEEDED) is a example
Code:
[B][COLOR="Navy"]Differences[/COLOR][/B]
[COLOR="SeaGreen"][B]TRUE[/B][/COLOR]
[COLOR="SeaGreen"](7297294,0,0,126,0,'Please~make~one~space~in~[COLOR="Navy"]your~eudemon[/COLOR]~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~[COLOR="Navy"]eudemon[/COLOR]~egg!');[/COLOR]
[B][COLOR="Red"]FALSE[/COLOR][/B]
[COLOR="Red"](7297294,0,0,126,0,'Please~make~one~space~in~[COLOR="Navy"]your~ eudemon[/COLOR]~bag~free!'),
(7297295,0,0,126,0,'Congratz!~You!~got~your~[COLOR="Navy"]eudemo n[/COLOR]~egg!');[/COLOR]
There must be no spaces in param.
|
|
|
07/31/2010, 11:07
|
#13
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
no i checked eveywhere theres no spaces its the the quote thing is being dumb!
|
|
|
07/31/2010, 11:11
|
#14
|
elite*gold: 0
Join Date: Nov 2009
Posts: 1,486
Received Thanks: 919
|
your itemtype.dat problem..maybe duplicate id or eudemon bag id dont have a monopoly
|
|
|
07/31/2010, 11:18
|
#15
|
elite*gold: 0
Join Date: Sep 2009
Posts: 383
Received Thanks: 81
|
not client sided its DB sided my client is set up fine i work with client for DB nvm ill just use the 180.... query the eud works fine i just cant get it from inventory to my bag
|
|
|
 |
|
Similar Threads
|
PortMap Error: RichEdit line insertion error
02/16/2012 - Metin2 Private Server - 5 Replies
Hey Leute,
habe mir letztens nen Metin2 P-Server mit Hamachi erstellt. Alles läuft super, wenn da dieser kack nicht wäre. PortMap zeigt eine Fehlermeldung, nachdem man sich eingeloggt hat: RichEdit line insertion error. Diese erscheint einmal zusätzlich pro Sekunde und PortMap und Metin2 wird beendet, sobald ca. 100 von diesen Meldungen auf dem Bildschirm sind. Was soll ich machen? Hat jemand ne Lösung?
Vielen Dank im Vorraus =)
|
[Fehler] Patch? Error? Hier Hilfe! [Error]
12/02/2010 - Combat Arms - 14 Replies
Da ich keine Werbung machen möchte muss ich wohl alles abkopieren...
Ich entschuldige mich das ich alles zuspoilern musste aber bei soviel Text....;)
1.Error Codes und ähnliches
Da es nach einem neuen Update immer wieder Probleme auftreten, empfehlen wir Euch folgende Liste mit den häufigsten Fehlern durchzugehen:
1. Deinstalliere Combat Arms über Arbeitsplatz-->Software
2. Prüfe ob alle Ordner von Nexon auf der Festplatte gelöscht sind. Wenn nicht lösche...
|
MySro Error~>Microsoft Error Visual C++ Runtime...
08/18/2009 - SRO Private Server - 3 Replies
Hello, i have got a problem:
http://image.cp-g.net/pics/4a8971bd15c0d.jpg.
I have already installed Microsoft Visual C++ Runtime Library 2005 and after that i installed 2007. It didn´t work.
Who can help me?
thanks
Alucard15
|
All times are GMT +1. The time now is 11:30.
|
|