random msg problem - 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: random msg problem (
/showthread.php?tid=291634)
random msg problem -
Kakioshe22 - 20.10.2011
PHP код:
new RandomMSG[][] =
{
"Use /kart for karting driving fun"
"Use /drift, /drift2, /Drift3 for drifting"
"There is alot of maps all over San Andreas"
"Use /vr or /fix to repair your vehicle"
"Use /heal to heal yourselfe"
"Use /armour to set your armour to 100"
"You can use /spawnveh to spawn yourselfe an vehicle"
"Use /anims to get an dialog of anims you can use"
"We hope you enjoy your time spend on Mata DM/stunt"
"If you need to change your car color use /carcolor [Color 1] [Color 2]"
"If you need to go afk use /afk and when you are back use /back"
};
Error:
PHP код:
C:\Users\Mario\Desktop\matta\Mata Server\gamemodes\stunt.pwn(420) : error 001: expected token: "}", but found "-string-"
C:\Users\Mario\Desktop\matta\Mata Server\gamemodes\stunt.pwn(430) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
This is third help im asking for, but pls help
Re: random msg problem -
Stigg - 20.10.2011
Try:
pawn Код:
new RandomMSG[][] =
{
"Use /kart for karting driving fun",
"Use /drift, /drift2, /Drift3 for drifting",
"There is alot of maps all over San Andreas",
"Use /vr or /fix to repair your vehicle",
"Use /heal to heal yourselfe",
"Use /armour to set your armour to 100",
"You can use /spawnveh to spawn yourselfe an vehicle",
"Use /anims to get an dialog of anims you can use",
"We hope you enjoy your time spend on Mata DM/stunt",
"If you need to change your car color use /carcolor [Color 1] [Color 2]",
"If you need to go afk use /afk and when you are back use /back"
};
Comma's
Re: random msg problem -
spd_sahil - 20.10.2011
forgetting something
The Comma >>
,
Re: random msg problem -
Kakioshe22 - 20.10.2011
it works
Re: random msg problem -
Stigg - 20.10.2011
Quote:
Originally Posted by Kakioshe22
it works
|
Glad we could help.