I'm wailing to Lean scripting, please Help -
moroccoghoost - 09.08.2014
Alright everyone
i've been playing SAMP for like 3 years now, and i never was interested to learn scripting until now, Why cause i have some unique ideas that (i think) in other servers , So All i need is Tutorials for Beginners
Bis scaly TDM scripting Please
Thank you for Reading and Supporting
Re: I'm wailing to Lean scripting, please Help -
SickAttack - 09.08.2014
http://forum.sa-mp.com/forumdisplay.php?f=70
Re: I'm wailing to Lean scripting, please Help -
JacobEdwards - 09.08.2014
Quote:
Originally Posted by moroccoghoost
Alright everyone
i've been playing SAMP for like 3 years now, and i never was interested to learn scripting until now, Why cause i have some unique ideas that (i think) in other servers , So All i need is Tutorials for Beginners
Bis scaly TDM scripting Please
Thank you for Reading and Supporting
|
As the post above said, look at some of the tutorials on the page. I think the best way to learn is by doing it yourself. Good luck.
Re: I'm wailing to Lean scripting, please Help -
Don_Cage - 09.08.2014
A side note!
Don't do like some beginners and start learning strcmp for commands. Learn zcmd or ycmd with sscanf right away..
Will save you so much time
Examples:
pawn Код:
if(strcmp(cmd,"/command",true) == 0)// strcmp
{
strcmp can also look like this:
pawn Код:
if(!strcmp(cmd,"/command", true))// also strcmp
{
Don't use any of those for commands.
Use
pawn Код:
CMD:command(playerid, params)//zcmd
{
Much faster, easier and overall better
Re: I'm wailing to Lean scripting, please Help -
moroccoghoost - 09.08.2014
Alright Thank you All
i've seen this one :
http://forum.sa-mp.com/forumdisplay.php?f=70 many times and read it and i couldn't understand it
All i need is the Easiest way to Make a couple Teams with their Spawns in Bases and Add a little Rank System and Classes
Re: I'm wailing to Lean scripting, please Help -
SickAttack - 09.08.2014
I'll suggest that you read the following if you can't understand anything.
http://www.compuphase.com/pawn/Pawn_Language_Guide.pdf
Re: I'm wailing to Lean scripting, please Help -
Faisal_khan - 09.08.2014
Wiki is your friend. wiki.sa-mp.com
Re: I'm wailing to Lean scripting, please Help -
Jay_Dixon - 09.08.2014
On a side note, you'll generally have a easy time sometimes. Pawn is really nothing more than a copy and paste job after you have a few things done, because if you pay attention to alot of game modes, you'll see that alot of the things in there, are written the exact same way. However I don't recommend the copy and paste job as it'll get boring fast for you. Also on a side note, I recommend downloading a godfather script, or ravens, study them and mess around with them a bit. See what happens when you put this here and that there, and so on. That's how I learned.