04.06.2012, 11:23
No offense but this tutorial is MISLEADING.
First thing, you just copied the Dialog thing from the samp wiki and that's just stupid, no offense.
Then again, this is a epic fail. You didn't show the dialogid part here. And you forgot to mention the \r\n for Windows and \n for Linux.
2. You didn't #define COLOR_WHITE nor taught them how to do it.
When I was a noob, I always made this mistake of not defining COLOR_WHITE and I didn't know how to define and all this stuff when i was a real noob.
And then the filterscript part, That's just wrong knowledge. Filterscripts are mini-scripts that are used for the convenience of using/NOT using some part of the code. They can be easily loaded and unloaded without the server being disturbed.
Then the PAWNO part. PAWNO is a coding language, not just SAMP scripting, but you can create MUCH stuff with it. Go ****** it on wikipedia. It's not just SAMP that uses PAWNO, It's many other games too!
First thing, you just copied the Dialog thing from the samp wiki and that's just stupid, no offense.
pawn Code:
CMD:help(playerid,params[]) //The command
{ //The code starts
ShowPlayerDialog //The first thing to type when coding a dialog
playerid // The ID of the player who used the command
"Help Menu" //The name of the dialog box
DIALOG_STYLE_LIST //The style of the dialog Note that the styles can be LIST,PASSWORD,MSG
"Account\nCommands\Admin\Helper\Shops\Houses" //What to show in the box
"Enter" //The first button on left
"Exit" //The second button on right
return 1; //The function ends
}
2. You didn't #define COLOR_WHITE nor taught them how to do it.
When I was a noob, I always made this mistake of not defining COLOR_WHITE and I didn't know how to define and all this stuff when i was a real noob.
And then the filterscript part, That's just wrong knowledge. Filterscripts are mini-scripts that are used for the convenience of using/NOT using some part of the code. They can be easily loaded and unloaded without the server being disturbed.
Then the PAWNO part. PAWNO is a coding language, not just SAMP scripting, but you can create MUCH stuff with it. Go ****** it on wikipedia. It's not just SAMP that uses PAWNO, It's many other games too!

