about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Magic Room.txtpb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-29 15:53:32 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-29 15:53:32 -0400
commit96211e016a9d25af63f932742dd115f0c80070d8 (patch)
tree9aa97c1a9f5f03a5920d08552e806650fe55b208 /data/maps/daedalus/rooms/Magic Room.txtpb
parent660c5eda45dfca9ff5739d131224f2dbcc258289 (diff)
downloadlingo2-archipelago-96211e016a9d25af63f932742dd115f0c80070d8.tar.gz
lingo2-archipelago-96211e016a9d25af63f932742dd115f0c80070d8.tar.bz2
lingo2-archipelago-96211e016a9d25af63f932742dd115f0c80070d8.zip
[Client] Added textclient
Diffstat (limited to 'data/maps/daedalus/rooms/Magic Room.txtpb')
0 files changed, 0 insertions, 0 deletions
00 Update Server: Added XML-RPC to Library' href='/instadisc/commit/update/library/trunk/instadisc.php?id=13263b90fa105971aba997b2ca39180f889533ef'>13263b9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29










                                                                                
                                                              
 
                                                                                      



                                                                                                       
                                                                                                                                                      




                                                                                                              
                                                                                                                 



                            
<?php

/* InstaDisc Update - A Four Island Project */

include('xmlrpc/xmlrpc.inc');

$idusUsername = ''; // Set this to the username you've registered
$idusPassword = ''; // Set this to the password you've registered
$idusCentralServer = ''; // Set this to the Central Server you've signed up with
$idusSubscriptionURI = ''; // Set this to your unique URI

function instaDisc_sendItem($title, $author, $url, $semantics)
{
	global $idusUsername, $idusPassword, $idusCentralServer, $idusSubscriptionURI;
	$verID = rand(1,65536);

	$client = new xmlrpc_client($idusCentralServer);
	$msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array(	new xmlrpcval($idusUsername, 'string'),
								new xmlrpcval(md5($idusUsername . ":" . md5($idusPassword) . ":" . $verID), 'string'),
								new xmlrpcval($verID, 'int'),
								new xmlrpcval($idusSubscriptionURI, 'string'),
								new xmlrpcval($title, 'string'),
								new xmlrpcval($author, 'string'),
								new xmlrpcval($url, 'string'),
								new xmlrpcval(serialize($semantics), 'string')));
	$client->send($msg);
}

?>