Question here....!
#1

I just want to Know what is Variables: NEW,ELSE,IF and so.... If anyway Can give me the Link to Learn them All, It will be Good.... I don't want to know what is Variables but What are this THings(NEW,IF,ELSE,....)?
Reply
#2

https://sampwiki.blast.hk/wiki/Scripting_Basics#Variables

With 'new' you create a variable.
pawn Код:
new MyVariable;
'if' and 'else' are conditional structures...
pawn Код:
new MyVariable = 5;

if(MyVariable == 5)
    printf("MyVariable is 5");
else
    printf("MyVariable isn't 5");
Reply
#3

Check this out..
This link will give you a basic idea of what's scripting. https://sampwiki.blast.hk/wiki/Category:..._Documentation
Reply
#4

Basics - https://sampwiki.blast.hk/wiki/Scripting_Basics#Variables
Get Started - https://sampwiki.blast.hk/wiki/Category:..._Documentation
Reply
#5

https://sampwiki.blast.hk/wiki/Keywords
Reply
#6

Thanks Guys Very Much....
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)