09.04.2015, 11:55
Format does not append to the query variable, it just overwrites whatever is in query. In your case, query will be 'Halloweenshop'=' '.
Do new query[1024], querypart[128];
Use querypart in your format functions. After every format, do strcat to join querypart into query. See: https://sampwiki.blast.hk/wiki/Strcat
Printf query at the end so you can check if the query is built correctly.
Do new query[1024], querypart[128];
Use querypart in your format functions. After every format, do strcat to join querypart into query. See: https://sampwiki.blast.hk/wiki/Strcat
Printf query at the end so you can check if the query is built correctly.