24.06.2013, 22:24
Hello guys, am kinda new to scripting and I might need a help creating a /shop cmd with DIALOG_STYLE_LIST,
I mean that the /shop cmd will look kinda like this;
"You've entered the shop, please purchase the weapon of your choise"
AK-47 2500$
M4A1 2500$
Combat-Shotgun 4000$
And etc...
Another problem I've is displaying a text on the bottom corner while in-game, I've this scripted.
And on public OnGameModeInit() I've this;
Now I don't have this text displayed at the bottom corner of my screen, and I'd like to know how to fix this problem.
If you've any usefull tutorials for begginer scripter which might ACTUALLY help I'd love a link to them.
Thanks ahead, all the best.
I mean that the /shop cmd will look kinda like this;
"You've entered the shop, please purchase the weapon of your choise"
AK-47 2500$
M4A1 2500$
Combat-Shotgun 4000$
And etc...
Another problem I've is displaying a text on the bottom corner while in-game, I've this scripted.
pawn Код:
new Text:HZGaming; // At the top of the script.
pawn Код:
HZGaming = TextDrawCreate(1.5 ,459 , "Welcome to Hazard-Gaming, visit hz-gaming.com");
TextDrawFont(HZGaming , 3);
TextDrawLetterSize(HZGaming , 0.4, 2.8000000000000003);
TextDrawColor(HZGaming , 0xffbf00FF);
TextDrawSetOutline(HZGaming , false);
TextDrawSetProportional(HZGaming , true);
TextDrawSetShadow(HZGaming , 1);
If you've any usefull tutorials for begginer scripter which might ACTUALLY help I'd love a link to them.
Thanks ahead, all the best.