var/Send[] = world.Export("[ServerAddr]?ping&[list2params(Information2Send)]")
Problem description:
Works if i remove the list2params(), stop working if i add it.
ID:264839
![]() Nov 30 2010, 1:39 pm
|
|
Code:
var/Send[] = world.Export("[ServerAddr]?ping&[list2params(Information2Send)]") Problem description: Works if i remove the list2params(), stop working if i add it. |
![]() Nov 30 2010, 1:50 pm
|
|
Then Information2Send isn't a list.
|
That is quite thoroughly contextualized and informative. I am glad that you are putting forth every effort to help us help you, but regret to inform you that I am far too sarcastic to help you at this time.
|
I told you already to press F1 and check in damn help!
world.Export("[ServerAddr]?ping:[list2params(Information2Send)]") |
I've done that, Ripiz. Still getting same problem.
Garthor, this is what i'm doing: mob/verb/test() |
instead of using "=list()" try using "=new" I've had problems with this before and it seems that setting it as new will cause it to be created as a child object of it's parent type.
essentially it makes sure that when the world starts up, it is generated as a list. |
It would have been extemely helpful to know what you wanted, but i seem to have figued it out. You want a value on your topic return?
By default topic returns # of players + 1 to a ping. In order to do this to a non-ping (ping:[list2params(Information2Send)] is not a ping) then you will have to set a return value on the receiving server. Sending:
Recieving: world/Topic(T) Next time more details please!!! |