ID:264821
 
Manager Code:
mob/GM/verb/Global_Announcement(message as message)
var/Actiona="Global"
Log("[src.key] Sent a Global Announcement saying: [message]")
var/InfoList[0]
InfoList["Action"] = Actiona
InfoList["Player"] = src.key
InfoList["Message"] = message
world.Export("[address]#[list2params(InfoList)]") // We're exporting the InfoList to the address


mob/GM/verb/Reboot_All(Time as num)
var/Actiona="Reboot"
var/InfoList[0]
InfoList["Action"] = Actiona
InfoList["RebootTime"] = Time
for(var/A in address)
Log("[src.key] Rebooted [A]")
world.Export("[A]#[list2params(InfoList)]")

mob/GM/verb/Reboot(Time as num,Server as anything in address)
var/Actiona="Reboot"
var/InfoList[0]
InfoList["Action"] = Actiona
InfoList["RebootTime"] = Time
world.Export("[Server]#[list2params(InfoList)]")
Log("[src.key] Rebooted [Server]")


Game Code:
world/Topic(A) // Then the other server should have this code
var/Actiona = A["Action"]
if(Actiona == "Global")
var/InfoList = params2list(A)
var/Player = InfoList["Player"]
var/Message = InfoList["Message"]
world << "<center><b>[Player] Wants to Global Annoucement </center></b><br><center>[Message]</center>"

if(Actiona == "Reboot")
var/InfoList = params2list(A)
var/RebTime = InfoList["RebootTime"]
world << "<b><font color = red>Server Manager:</font></b> Server Manager is rebooting the server in [RebTime] Seconds"
sleep(RebTime)
world.Reboot()

Problem description:

runtime error: bad index
proc name: Topic (/world/Topic)
usr: null
src:
call stack:
: Topic("Action=Reboot&RebootTime=123", "186.136.210.37:999", null, null)



You are attempting to read A["Action"], but A is a text string, not a list. You need to use params2list() first.
In response to Garthor
Oh yea, thanks. ;D