Register for your free account! | Forgot your password?

Go Back   elitepvpers > News & More > e*pvp News > e*pvp News - DE
You last visited: Today at 14:32

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

Advertisement



24h lock bei Treasures & TBM API für Entwickler

Discussion on 24h lock bei Treasures & TBM API für Entwickler within the e*pvp News - DE forum part of the e*pvp News category.

Closed Thread
 
Old 07/13/2010, 16:15   #16
 
elite*gold: 0
Join Date: Jan 2008
Posts: 3,026
Received Thanks: 4,504
API...mhm....villt könnte man ja nen Sellshop mit e*gold machen...mh :O
Daunenjacke is offline  
Thanks
1 User
Old 07/13/2010, 18:11   #17
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
Wieso wurde eigentlich die Notiz nicht zur API hinzugefügt?
Atheuz is offline  
Old 07/13/2010, 19:14   #18
 
Lowfyr's Avatar
 
elite*gold: 235
The Black Market: 135/1/0
Join Date: Jul 2003
Posts: 16,562
Received Thanks: 17,758
wird noch nachgetragen, fieldname wird note sein
Lowfyr is offline  
Thanks
1 User
Old 07/13/2010, 19:43   #19
 
Tanhii's Avatar
 
elite*gold: 1
Join Date: Dec 2008
Posts: 4,066
Received Thanks: 1,726
Quote:
Originally Posted by CleanTrader View Post
please in english
Today there we have implemented again another little Update for the elitepvpers' The Black Market.

A few weeks bevore u have submitted the idea of a time independent lock for the e*gold to prevent scammers.

We listened to the voice of the community and now are all Treasures in the Black Market locked for 24 hours after they were sold. That means that the seller can't use the e*gold he got for 24 hours.

So you have enough time to report scamming in the support forum and can get your elite*gold back.

Furthermore we have added a interface for all the devolper in our community. After entering the secred word which you should keep secret (who whould have thought that), you have the possibility to retrieve your transactions in the JSON data format and devolp your own applications (shop integrations f.e.)

If you use our API active, we will expand it.

Meanwhile some of you will have noticed that we have removed the possibilty of paying with Paypal. We did that, because there were more credit card fraud lately.

As an replacement we have integrated MoneyBrookes which have the problem better under control.

If you find errors we are happy about every Bug-Report. You can send us a report in the Complaint-Forum or direct here in the topic.

That was it and have fun on elitepvpers with the new features.

No gurantee that it shows 100% the text which Lowfyr have written.

greets
Tanhii is offline  
Thanks
5 Users
Old 07/14/2010, 01:40   #20
 
elite*gold: 24
Join Date: Apr 2010
Posts: 35,931
Received Thanks: 6,344
Sehr schönes Update Lwy ;>
anonymous-f4h279 is offline  
Thanks
1 User
Old 07/14/2010, 07:14   #21
 
elite*gold: 18
Join Date: Dec 2009
Posts: 3,016
Received Thanks: 404
Sehr gut hoffe das ganz scammen usw hat ein ende =)
XxxXHakanXxxX is offline  
Old 07/14/2010, 12:04   #22
 
.Night²'s Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 22
Received Thanks: 3
Super Hoffe Das die scammer verschwinden
grus .Night²
.Night² is offline  
Old 07/14/2010, 13:40   #23
 
Beleth's Avatar
 
elite*gold: 8
Join Date: Jun 2009
Posts: 1,203
Received Thanks: 141
Good Job!
Eine "bearbeiten"-Funktion bei treasures wäre auch von Vorteil, damit man den Preis senken kann und nicht gleich einen neuen treasure erstellen muss
Beleth is offline  
Old 07/14/2010, 13:59   #24


 
Cholik's Avatar
 
elite*gold: 4
Join Date: Aug 2008
Posts: 6,786
Received Thanks: 4,992
Dann poste ichs auch nochmal hier ;O


A small example, that shows how to use the API with pure JavaScript.

PHP Code:
function CreateXMLHttpRequest()
{
    try 
    {
        
// Mozilla, Opera, Safari sowie Internet Explorer (ab v7)
        
return new XMLHttpRequest();
    } 
    catch(
e
    {
        try 
        {
            
// MS Internet Explorer (ab v6)
            
return new ActiveXObject("Microsoft.XMLHTTP");
        } 
        catch(
e
        {
            try {
                
// MS Internet Explorer (ab v5)
                
return new ActiveXObject("Msxml2.XMLHTTP");
            } 
            catch(
e
            {
                return 
null;
            }
        }
    }
}

var 
transactions;
var 
user_id 'YOURUSERID';
var 
transaction_type 'received'//received, sent or all
var secretword 'YOURSECRETWORD';
var 
transaction_date = new Date();
var 
xmlHttp CreateXMLHttpRequest();

if(
xmlHttp)
{
    
xmlHttp.open('GET''http://www.elitepvpers.com/theblackmarket/api/transactions.php?u=' user_id '&type=' transaction_type '&secretword=' secretwordtrue);
    
xmlHttp.onreadystatechange = function() {
        if(
xmlHttp.readyState == 4)
        {
            
transactions = eval('(' xmlHttp.responseText ')');
            
            if(
transactions.length 0)
            {
                for(var 
0transactions.lengthi++)
                {
                    
transaction_date.setTime(transactions[i]['dateline'] * 1000);
                    
console.log('---------------------------------------------');
                    
console.log('Transaction ID: ' transactions[i]['eg_transactionid']);
                    
console.log('EG Amount: ' transactions[i]['amount']);
                    
console.log('Received From: ' transactions[i]['eg_fromusername'] + '(' transactions[i]['eg_from'] + ')');
                    
console.log('Transation Date: ' transaction_date.toLocaleString());
                }
            }
        }
    };
    
xmlHttp.send(null);



The same example using JavaScript and the jQuery Framework.
PHP Code:
var user_id 'YOURUSERID';
var 
transaction_type 'received'//received, sent or all
var secretword 'YOURSECRETWORD';
var 
transaction_date = new Date();

if(
jQuery)
{
    $.
getJSON('http://www.elitepvpers.com/theblackmarket/api/transactions.php?u=' user_id '&type=' transaction_type '&secretword=' secretword, function(transactions){
       if(
transactions.length 0)
            {
                for(var 
0transactions.lengthi++)
                {
                    
transaction_date.setTime(transactions[i]['dateline'] * 1000);
                    
console.log('---------------------------------------------');
                    
console.log('Transaction ID: ' transactions[i]['eg_transactionid']);
                    
console.log('EG Amount: ' transactions[i]['amount']);
                    
console.log('Received From: ' transactions[i]['eg_fromusername'] + '(' transactions[i]['eg_from'] + ')');
                    
console.log('Transation Date: ' transaction_date.toLocaleString());
                }
            }
    });

Cholik is offline  
Thanks
6 Users
Old 07/14/2010, 16:09   #25
 
elite*gold: 0
Join Date: Jun 2010
Posts: 697
Received Thanks: 96
Wirklich Richtig Gut !!!
♥-♥ is offline  
Old 07/14/2010, 20:27   #26
 
elite*gold: 10
Join Date: Jul 2010
Posts: 1,589
Received Thanks: 453
Haii sicherheit
Bay Scammer
.Éstera is offline  
Old 07/15/2010, 02:18   #27
 
elite*gold: 0
Join Date: Jun 2010
Posts: 2,297
Received Thanks: 2,254
Würde doch mal sagen ein Hohes Lob an Admin Team

Danke Schön
.NewEra :3 is offline  
Old 07/15/2010, 11:15   #28
 
elite*gold: 2
Join Date: Mar 2008
Posts: 827
Received Thanks: 157
Nice work, kann ich nur sagen
Aber ich hab jetz mit Moneybookers eGold gekauft über Giropay (also Geld ist sofort da), wie lange dauert es bis ich mein eGold habe?
.Kia. is offline  
Old 07/15/2010, 12:01   #29
 
Lowfyr's Avatar
 
elite*gold: 235
The Black Market: 135/1/0
Join Date: Jul 2003
Posts: 16,562
Received Thanks: 17,758
kam gerade an
Lowfyr is offline  
Thanks
2 Users
Old 07/15/2010, 17:44   #30
 
Neon™'s Avatar
 
elite*gold: 50
Join Date: Feb 2009
Posts: 2,173
Received Thanks: 1,765
Halte ich auch für ne gute Sache.
Trading per e*gold ist der PSC nun eindeutig vorzuziehen. Der Black Market verbessert sich immer weiter
Neon™ is offline  
Closed Thread

Tags
tbm


Similar Threads Similar Threads
Treasures
06/19/2010 - WarRock - 16 Replies
hallo leute hab wieder ne frage^^ und zwar wenn ich ein Treasures mache kann man da iwie ein pw machen?
Entwickler Ressourcen
01/09/2010 - General Coding - 7 Replies
Microsoft Microsoft .NET Framework 3.5 Service Pack 1 - Full Package Visual Studio 2008 Express Edition Silverlight Tools für Visual Studio 2008 Alternative Entwicklungsumgebungen SharpDevelop
Betteln an die lock mob götter S 15 lock mob
02/04/2009 - Metin2 - 1 Replies
dieser thread geht vor allen dingen an banjo aber wers sonst noch kann kann den lock mob ja auch mal updaten also pls lock mob für s15/16
Suche Bot Entwickler
07/14/2008 - WoW Bots - 0 Replies
Hi Suche andere (Memory, Screen read) Bot Entwickler die vorzugsweise in VB.NET programmieren. Um Erfahrungen auszutauschen und effizienter voran zu kommen. Hoffe auf paar PN's! mfg vampir26



All times are GMT +2. The time now is 14:32.


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.