Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 06:51

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

Advertisement



[SQL] Looking for fixed code

Discussion on [SQL] Looking for fixed code within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old   #1


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
[SQL] Looking for fixed code

null.

Want to do that, too.
Xijezu is offline  
Old 11/22/2011, 01:13   #2
 
elite*gold: 0
Join Date: Jul 2009
Posts: 508
Received Thanks: 296
Quote:
Originally Posted by Xijezu View Post
Heya,

Some confusing title, but I will explain it for ya.
I'm working on a GM/Admin-Panel in php, for example: Insert Items or Buffs.

Thats because most times I'm not able to connect ingame, because I'm not at home.

I'm going to release the finished script for sure.

All was working fine expect inserting skillcards.

When I'm going to insert a skillcard via SQL/PHP, I will get it Ingame.
But if I relogg, either the skillcard disappears or it is +1 insteat of +10.

Raskim? ismoke? someone of NCarbon? someone who knows about SQL?
Try to find the issue.


First try:

Second try (just a general insert_item-procedure)

Thanks for reply.
Why don`t you try it on an other way. You try to insert them directly, this seem`s not to work. Try it with the ShopBox (dbo.paiditem)


Edit: Don`t forget, that the Launcher need the row "/cash".

My Launcher use this line. (It`s for official, so don`t waste your time trying to "Hack" it ;p)

Raskim2000 is offline  
Thanks
2 Users
Old 11/22/2011, 01:23   #3


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Well, sure, that would be an alternative way, but I'm confused about the columns, dont know what all of this does.

Magst mal skype on kommen und mich über die spalten aufklären? xD
Xijezu is offline  
Old 11/24/2011, 21:27   #4
 
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
Danke Raskim Ich bau das Query noch n bissl schöner und dann poste ichs hier
lawlywood is offline  
Old 11/25/2011, 03:31   #5
 
RoflcopterGoesSoiSoiSoi's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 663
Received Thanks: 191
you never fill out sid, it's auto-increment
RoflcopterGoesSoiSoiSoi is offline  
Old 11/25/2011, 13:15   #6
 
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
I got this working now
It won't set a time limit cause i don't need it. Feel free to add it, if you want.
Those items will appear in the item box. Look for the /cash flag in your launcher. Thank you Raskim for posting those infos about the paidItem thing

Users won't recieve a message in the chat, that they have recieved a new item!


Code:
Use Telecaster
DECLARE @id int; --accountid
DECLARE @itemcount int; --Anzahl der Items
DECLARE @item int;
DECLARE @avatarid int;

-----------Insert Settings here-----------------
SET @item = '' --INSERT ITEM ID (e.g. 2010764 R6 Cloak)
SET @itemcount = '1' --INSERT THE NUMBER OF ITEMS
SELECT @avatarid = sid FROM Character WHERE name = 'CHARNAME' --INSERT CHARACTER NAME
------------------------------------------------

SELECT @id = account_id FROM Character WHERE sid = @avatarid

--Warning
IF @id IS NULL
BEGIN
PRINT 'WARNING: This Character does not exist. No Rows affected!'
RETURN
END

--DB Update
INSERT INTO [telecaster].[dbo].[PaidItem]([account_id],[avatar_id],[avatar_name],[item_code],[item_count],[rest_item_count],[bought_time],[valid_time],[server_name],[taken_avatar_id],[taken_avatar_name],[taken_server_name],[taken_time],[taken_account_id],[confirmed],[confirmed_time]) VALUES (@id,@avatarid,NULL,@item,@itemcount,@itemcount,'2011-10-01 12:00:00.000',NULL,NULL,NULL,NULL,NULL,NULL,@id,NULL,NULL)
lawlywood is offline  
Old 11/25/2011, 13:24   #7
 
elite*gold: 0
Join Date: Jul 2009
Posts: 508
Received Thanks: 296
Quote:
Originally Posted by lawlywood View Post
I got this working now
It won't set a time limit cause i don't need it. Feel free to add it, if you want.
Those items will appear in the item box. Look for the /cash flag in your launcher. Thank you Raskim for posting those infos about the paidItem thing

Users won't recieve a message in the chat, that they have recieved a new item!


Code:
Use Telecaster
DECLARE @id int; --accountid
DECLARE @itemcount int; --Anzahl der Items
DECLARE @item int;
DECLARE @avatarid int;

-----------Insert Settings here-----------------
SET @item = '' --INSERT ITEM ID (e.g. 2010764 R6 Cloak)
SET @itemcount = '1' --INSERT THE NUMBER OF ITEMS
SELECT @avatarid = sid FROM Character WHERE name = '' --INSERT CHARACTER NAME
------------------------------------------------

SELECT @id = account_id FROM Character WHERE sid = @avatarid

--Warning
IF @id IS NULL
BEGIN
PRINT 'WARNING: This Character does not exist. No Rows affected!'
RETURN
END

--DB Update
INSERT INTO [telecaster].[dbo].[PaidItem]([account_id],[avatar_id],[avatar_name],[item_code],[item_count],[rest_item_count],[bought_time],[valid_time],[server_name],[taken_avatar_id],[taken_avatar_name],[taken_server_name],[taken_time],[taken_account_id],[confirmed],[confirmed_time]) VALUES (@id,@avatarid,NULL,@item,@itemcount,@itemcount,'2011-10-01 12:00:00.000',NULL,NULL,NULL,NULL,NULL,NULL,@id,NULL,NULL)
Ist doch im Prinzip nichts anderes wie mein Script?

Na gut, du hast noch die klausel reingehauen, das er dir anzeigt das die falsche id verwendet wurde.
Raskim2000 is offline  
Old 11/25/2011, 13:30   #8
 
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
Nein ich habs einfacher gemacht, dass du nicht für jeden insert:
1. die character nummer suchen musst
2. die account nummer suchen musst
3. die blöcke abzählen musst
und 4. müll in der db drinnen steht

Also ich finds so deutlich komfortabler event items zu verteilen...
lawlywood is offline  
Old 11/25/2011, 13:40   #9
 
elite*gold: 0
Join Date: Jul 2009
Posts: 508
Received Thanks: 296
Pardon, ich bin etwas verwirrt gewesen, aber ich merk gerade das du die items direkt ins inventar legen willst mit dem script, aber da fehlen doch noch die taken_time usw.

Edit: Vergiss was ich gesagt hab, nicht mein Tag heute
Raskim2000 is offline  
Old 11/25/2011, 13:53   #10
 
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
lolz. ne ich will ja, dass man sich den char aussuchen kann, da manche items char-bound sind.
lawlywood is offline  
Old 11/25/2011, 16:24   #11


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Da ihr ja bestimmt gesehen habt, und ich mich just 4 fun an den Cashshop gesetzt habe, finde ich auch, das die normale Procedure um längen einfacher ist.
Man hat die ganzen Werte, sprich acc. id etc. in Variabeln gespeichert, und brauch dann nichts mehr machen, ...
Ich verzichte eigentlich so schon grundsätzlich auf die INSERT ITEM-Variante, ich mag die nicht. :/ xD
Xijezu is offline  
Old 11/25/2011, 16:32   #12
 
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
nuja ich nutz immer ingame insert_item aber verschiedene items (donation wings oder event zeug) landet immer im eigenen inventar. dafür ist die box ganz nice
lawlywood is offline  
Reply


Similar Threads Similar Threads
[26.03]Geoning D3D V5.2 Beta - Chams, Fixed OPK, 2 vesion menu, Fixed SpeedHack
03/26/2011 - WarRock Hacks, Bots, Cheats & Exploits - 10 Replies
Od autora... OPK, SVP, wymaga szybkiego procesora. Menu zmieniamy za pomocą klawiszy PageUp i PageDown Mam nadzieje, że hack się wam spodoba :) ChangeLog 26.03.2011 - 5.2 - Usunięto opcje pokazywania ilości dinarów - Dodano funkcje D3D - Poprawiono właczanie hacka, nie laguje pierwszego ładowania
VIP HACK @@@@@ 02.03.2011 by Geoning. Many Fixed PLAYERS OPK, FIXED NFD
03/02/2011 - WarRock Hacks, Bots, Cheats & Exploits - 1 Replies
Cześć, hack mojej produkcji ^^ Na 64bitowym Windowsie 7 hack działa bez lagowania ponad 3 godzin (dalej nie testowałem ^^) Warning! If you want to copy the hack into other forums, leave the current links to download and VirusTotal! Co się zmieniło?? 02.03.2011 - 4.9 - ESP Health Bar zmienia automatycznie kolor w zależności od ilości życia. Skala wylicza 100 kolorów. - Naprawiono funkcje NFD - Nie trzęsie kamerą



All times are GMT +2. The time now is 06:51.


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.