Ok i know the general idea of setting strings, but im having a problem with adding this new item to my gui ive made, it works when added all the strings by RC but now i made an item so that it will record all the stats from a buy npc.
anyways this is the part im having the trouble with
NPC Code:
setstring client.temp,"Fishing Rod" "Fishing" "" "" "Rod Used for Fishing" "" "" "No Resale";
for (i=1;i<10;i++) {
if (strequals(#s(clientr.item#v(i)), )) {
triggeraction 0,0,serverset,item#v(i),#s(client.temp);
break;
}
}
in the npcserver i have a place for setting the string and it works well with everything else, except this.
Even when i put #s(client.temp) in Quotes like "#s(client.temp)" it wont send, it only sends Fishing and Rod to the string.
Any help?