SmokeTime=15
Offtime=4
StartColor=<0,1,1>
EndColor=<1,1,0>
dataserver(key queryId, string data)
{
if(queryId == gQueryId)
{
if(data != EOF)
{
list tmp = llParseString2List(data, ["="], []);
string setting = llList2String(tmp,0);
if (setting == "SmokeTime"

{
lTime = llList2Integer(tmp,1);
}
if (setting == "Offtime"

{
delay = llList2Integer(tmp,1);
}
if (setting == "StartColor"

{
sColor = llList2Vector(tmp,1);
}
if (setting == "EndColor"

{
eColor = llList2Vector(tmp,1);
}
gQueryId = llGetNotecardLine(gNotecardName,++gNotecardLine);
The vectors are used for the Particle Sys -- but when it starts - the particles are black
When I do the eColor = llList2Vector(tmp,1); is it losing some data somehow?
Bugtesting and using eColor as a String - it shows the full vector.
Anyone that can point me in the right direction? Thanks