new str[256]; format(str,sizeof(str),"%s: %s (( /takeerrand ))",qs_npc_names[npc],qs_intro_text[npc]); SendClientMessage(playerid, COLOR_WHITE, str);
|
Hey guys.. I've done this:
Код:
new str[256]; format(str,sizeof(str),"%s: %s (( /takeerrand ))",qs_npc_names[npc],qs_intro_text[npc]); SendClientMessage(playerid, COLOR_WHITE, str); Anyone know how to fix it? |
new str[256]; format(str,sizeof(str),"%s: %s (( /takeerrand ))",qs_npc_names[npc],qs_intro_text[npc]); SendClientMessage(playerid, COLOR_WHITE, str);
new qs_intro_text[MAX_QUESTS][232] = {
"Dude, these Gas Sations in Las Venturas are killing our customer numbers.. Say.. Could you take this and... Deal.. With them?",
"Hey, whats going on? Anyway.. I got a.. Friend.. Who needs to be taught the meaning of the word dangerous.. Wanna take care of this for me?",
"Hey.. HEY! Dude.. Can you do me a favour.. I have something that needs to be disposed of.. Can you just dump these packages off in Ocean Docks for me?",
"Could you do me a favour deary.. I need some milk.. Here is $10 can you just pop down to the store and grab some for me?"
};
|
The qs_intro_text is this:
Код:
new qs_intro_text[MAX_QUESTS][232] = {
"Dude, these Gas Sations in Las Venturas are killing our customer numbers.. Say.. Could you take this and... Deal.. With them?",
"Hey, whats going on? Anyway.. I got a.. Friend.. Who needs to be taught the meaning of the word dangerous.. Wanna take care of this for me?",
"Hey.. HEY! Dude.. Can you do me a favour.. I have something that needs to be disposed of.. Can you just dump these packages off in Ocean Docks for me?",
"Could you do me a favour deary.. I need some milk.. Here is $10 can you just pop down to the store and grab some for me?"
};
What do you think the problem with it is? |