Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,638
» Latest member: BrightNestK
» Forum threads: 2,352
» Forum posts: 12,297

Full Statistics

Online Users
There are currently 333 online users.
» 0 Member(s) | 331 Guest(s)
Bing, Google

Latest Threads
How to make your GTA SA:M...
Forum: Tutorials
Last Post: kayn
4 hours ago
» Replies: 4
» Views: 3,649
Cara buka blokir bale by ...
Forum: General Discussions
Last Post: majarreas
5 hours ago
» Replies: 0
» Views: 2
Cara Buka Blokir rekening...
Forum: General Discussions
Last Post: majarreas
5 hours ago
» Replies: 1
» Views: 2
Nomor WhatsApp resmi BWS ...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 03:09 PM
» Replies: 1
» Views: 30
Nomor WhatsApp Bank Woori...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 03:04 PM
» Replies: 1
» Views: 25
cara buka blokir rekening...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 02:59 PM
» Replies: 1
» Views: 27
cara mengatasi tidak bisa...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 02:54 PM
» Replies: 1
» Views: 25
Bagaimana jika lupa usern...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 02:50 PM
» Replies: 0
» Views: 18
Cara membuka blokir BWS M...
Forum: General Discussions
Last Post: berdaraind
Yesterday, 02:47 PM
» Replies: 0
» Views: 17
Cara buka blokir bale btn
Forum: General Discussions
Last Post: berdaraind
Yesterday, 02:45 PM
» Replies: 0
» Views: 17

 
  Class System for my Server
Posted by: SilverStar - 2020-11-20, 04:35 PM - Forum: General Discussions - No Replies

I have developed the gangwar game mode, there are 2 role

- Police

- Gang

In the gang role, there are 4 teams, Grove, Ballas, Aztec, Vagos. And for now I am thinking of adding classes like Rank to these 2 roles and also the features of each class. Can anyone help me come up with class names for Role Gang and Police? along with its unique features from each of these classes??



Edit:?I am also thinking that the class name will be taken from the rank gang and police in real life, please give your ideas


  Anim while walking
Posted by: SilverStar - 2020-11-20, 04:28 PM - Forum: Questions and Suggestions - Replies (1)

is it possible to use pointing animation while walking and following camera direction in SAMP? like GTA V Roleplay


  PlayerTextDrawBoxColor is not work
Posted by: Zow - 2020-11-20, 11:28 AM - Forum: Pawn Scripting - No Replies

When I typed /show and then rCheck only switch me from 0 to 1 and done?
I want them to keep count until the end?
I know my code look stupid but I dont know how to do it in other way

Code:
CMD:show(playerid, params[])
{
? ? PlayerTextDrawShow(playerid, Brandom[playerid]);
? ? PlayerTextDrawShow(playerid, Lrandom[playerid]);
? ? PlayerTextDrawShow(playerid, Mrandom[playerid]);
? ? PlayerTextDrawShow(playerid, Rrandom[playerid]);
? ? Timer[playerid] = SetTimerEx("rCheck", 100, true, "dd", playerid, RCount[playerid]);
return 1;
}

CMD:hide(playerid, params[])
{
? ? PlayerTextDrawHide(playerid, Brandom[playerid]);
? ? PlayerTextDrawHide(playerid, Lrandom[playerid]);
? ? PlayerTextDrawHide(playerid, Mrandom[playerid]);
? ? PlayerTextDrawHide(playerid, Rrandom[playerid]);
? ? KillTimer(Timer[playerid]);
return 1;
}

Hide(playerid)
{
? ? PlayerTextDrawHide(playerid, Lrandom[playerid]);
? ? PlayerTextDrawHide(playerid, Mrandom[playerid]);
? ? PlayerTextDrawHide(playerid, Rrandom[playerid]);
? ? return 1;
}

Show(playerid)
{
? ? PlayerTextDrawShow(playerid, Lrandom[playerid]);
? ? PlayerTextDrawShow(playerid, Mrandom[playerid]);
? ? PlayerTextDrawShow(playerid, Rrandom[playerid]);
? ? return 1;
}

Frandom(playerid)
{
? ? PlayerTextDrawBoxColor(playerid, Lrandom[playerid], -16776961);
? ? PlayerTextDrawBoxColor(playerid, Mrandom[playerid], 115);
? ? PlayerTextDrawBoxColor(playerid, Rrandom[playerid], -16776961);
}

Srandom(playerid)
{
? ? PlayerTextDrawBoxColor(playerid, Lrandom[playerid], 115);
? ? PlayerTextDrawBoxColor(playerid, Mrandom[playerid], -16776961);
? ? PlayerTextDrawBoxColor(playerid, Rrandom[playerid], 115);
}

forward rCheck(playerid, count);
public rCheck(playerid, count)
{
? ? switch(count)
? ? {
? ? ? ? case 0:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 1:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 2:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 3:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 4:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 5:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 6:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 7:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 8:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 9:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 10:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 11:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 12:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Frandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 13:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? Srandom(playerid);
? ? ? ? ? ? Show(playerid);
? ? ? ? }
? ? ? ? case 14:
? ? ? ? {
? ? ? ? ? ? Hide(playerid);
? ? ? ? ? ? KillTimer(Timer[playerid]);
? ? ? ? }
? ? }
? ? RCount[playerid];
? ? return 1;
}


  The client only show 100/150 players but inside is already over?
Posted by: Zow - 2020-11-19, 01:35 PM - Forum: Pawn Scripting - No Replies

The client only show 100/150 players but inside is already over?



How can I fix this?



[Image: unknown.png]



[Image: unknown.png?width=1216&height=684]


  Help me with an idea please
Posted by: Ryder Sixz - 2020-11-18, 10:45 PM - Forum: General Discussions - Replies (5)

Hello, I have been developing a Roleplay gamemode for months, I do it more to pass the time than for anything else. Well the fact is that I am in the part of the works, and I would like you to help me with any suggestion that another job could implement the GM, the ones I already have are:?





-Garbage man

-Taxi driver?

-Policeman?

-Miiner?

-Harvester?

-Street sweeper?

-Lumberjack?

-Trucker?



What other do you recommend? I appreciate any ideas, greetings to all!


  Dialog MSGBOX Help
Posted by: DaZzY - 2020-11-17, 12:38 PM - Forum: Pawn Scripting - Replies (2)

Hello i can't get more than 20 line on MSGBOX ?? Why ??
I see many server with dialog MSGBOX have more 20 line ...


  SCM HELP!
Posted by: Popce - 2020-11-15, 09:55 AM - Forum: Pawn Scripting - Replies (2)

Does anyone know how to put different?color text?in SCM?


  web.archive.org has excluded samp forums
Posted by: Dev86 - 2020-11-15, 06:55 AM - Forum: General Discussions - Replies (8)

well, this will be another inconvenience

[Image: 99LmsiT.png]


  Car ID bug after first lock
Posted by: Zow - 2020-11-14, 05:35 PM - Forum: Pawn Scripting - No Replies

[Video: https://www.dailymotion.com/video/x7xhdh2]



When I lock vehicle first time is good but the second time won't

As you can see first lock/unlock debug is 1 but after that they all give me 0 all the time

I don't know how to explain but I give you full clip so hope you understand my bug



This is my command and function



https://pastebin.com/AYm7PkqE



Can't post full code here


  How can i embed color in Textdraw?
Posted by: Cada - 2020-11-14, 07:59 AM - Forum: General Discussions - Replies (3)

Hello.



I want to make Textdraw with couple of colors.

I know that i can make it like " Oh!?~r~Hello ~w~World" but i can`t " Oh! {FF0000}Hello {FFFFFF}World".

i want to embed hex color. can i do it?



Finally, i want to make textdraw based on gray, and make some color red.

Ex) {Gray}Oh!! Hey, {Red}How {Gray}are you?



Plz help me!!