SA-MP Forums Archive
Some bug - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Some bug (/showthread.php?tid=326481)



Some bug - HighPitchedVoice - 17.03.2012

When I compiled it said like this:
pawn Код:
C:\RP.pwn(689) : error 001: expected token: "}", but found "-string-"
The code is:
pawn Код:
new Tooltips[][] =
{
    "Cross City Roleplay Staff will never ask you for your password.",
    "Bored? Have a round of Paintball at the ~r~Paintball Arena~w~!",
    "Remember! We log everything, and have auto-detection for the majority of hacks.",
    "Don't forget to check out our E-store at ~y~, Helps keep this server up and running~w~!",
    "We have a full community advisors staff waiting to help you! Use ~g~/requesthelp~w~ to communicate with them!",
    "Found a bug? Don't report it toward our staff, please goto our bug forums at ~y~~w~.",
    "Remember to read the ~r~rules~w~, failure to do so may lead toward punishment or even a ban.",
    "Want to make a suggestion? Our suggestions box is on our forums, submit away!",
    "Dying to join a gang or faction, Be sure to Roleplay with their leaders, or apply on the forums!",
    "Caught a player breaking the rules? Make a complaint on the forums, or simply ~g~/report ~w~it!"
    "Don't ask for administrator, we choose our staff who are fit for the job!"
}



Re: Some bug - GNGification - 17.03.2012

Change
pawn Код:
"Caught a player breaking the rules? Make a complaint on the forums, or simply ~g~/report ~w~it!"
To:
pawn Код:
"Caught a player breaking the rules? Make a complaint on the forums, or simply ~g~/report ~w~it!",
Should work, and I would be thankfull for rep if it did.


Re: Some bug - HighPitchedVoice - 17.03.2012

pawn Код:
"Don't ask for administrator, we choose our staff who are fit for the job!"
Should I add that , to there aswell?


Re: Some bug - GNGification - 17.03.2012

No, or is it giving errors?
Because the last one should be without '',''


Re: Some bug - T0pAz - 17.03.2012

pawn Код:
new Tooltips[][] =
{
    "Cross City Roleplay Staff will never ask you for your password.",
    "Bored? Have a round of Paintball at the ~r~Paintball Arena~w~!",
    "Remember! We log everything, and have auto-detection for the majority of hacks.",
    "Don't forget to check out our E-store at ~y~, Helps keep this server up and running~w~!",
    "We have a full community advisors staff waiting to help you! Use ~g~/requesthelp~w~ to communicate with them!",
    "Found a bug? Don't report it toward our staff, please goto our bug forums at ~y~~w~.",
    "Remember to read the ~r~rules~w~, failure to do so may lead toward punishment or even a ban.",
    "Want to make a suggestion? Our suggestions box is on our forums, submit away!",
    "Dying to join a gang or faction, Be sure to Roleplay with their leaders, or apply on the forums!",
    "Caught a player breaking the rules? Make a complaint on the forums, or simply ~g~/report ~w~it!",
    "Don't ask for administrator, we choose our staff who are fit for the job!"
};



Re: Some bug - HighPitchedVoice - 17.03.2012

Thanks T0pAz.