12.02.2012, 17:04
I need some help, I can't get my script to read an XML file with teleports:
XML file: http://pastebin.com/w0CsJ9b5
Load function:
The server crashes after:
XML file: http://pastebin.com/w0CsJ9b5
Load function:
pawn Код:
stock Teleport_Cargar()
{
new XMLNode:current_node = XML_LoadDocument("teleports.xml");
if(current_node)
{
new slot;
current_node = XML_GetFirstChild(current_node, "teleports");
if(current_node)
{
new string[64];
new XMLNode:next_node;
current_node = XML_GetFirstChild(current_node);
while(current_node)
{
next_node = XML_GetNextSibling(current_node);
current_node = XML_GetFirstChild(current_node, "name");
XML_GetValue(current_node, Teleport[slot][NOMBRE], 32);
current_node = XML_GetNextSibling(current_node, "type");
XML_GetValue(current_node, string, sizeof(string));
Teleport[slot][TIPO] = strval(string);
current_node = XML_GetNextSibling(current_node, "command");
XML_GetValue(current_node, Teleport[slot][COMANDO], 32);
current_node = XML_GetNextSibling(current_node, "position");
current_node = XML_GetFirstChild(current_node, "x");
XML_GetValue(current_node, string, sizeof(string));
Teleport[slot][POS][0] = floatstr(string);
current_node = XML_GetNextSibling(current_node, "y");
XML_GetValue(current_node, string, sizeof(string));
Teleport[slot][POS][1] = floatstr(string);
current_node = XML_GetNextSibling(current_node, "z");
XML_GetValue(current_node, string, sizeof(string));
Teleport[slot][POS][2] = floatstr(string);
current_node = XML_GetNextSibling(current_node, "a");
XML_GetValue(current_node, string, sizeof(string));
Teleport[slot][POS][3] = floatstr(string);
current_node = next_node;
slot += 1;
}
}
printf("Teleports cargados: %i.", slot);
return 1;
}
return 0;
}
pawn Код:
current_node = XML_GetFirstChild(current_node, "name");
XML_GetValue(current_node, Teleport[slot][NOMBRE], 32); // This call is crashing the server.