Search Results
Can one NPC be used for more players at once? for instance, I want to make an airplane flight intro before registration process what if more players started the registration process (npc intro) at t...
54,516
this might not be a place to post this, but im really in hurry so don't mind i want to make a tower climbing minigame. i thought about using virtual worlds for each player so every player has its own...
135
i want to make a tower climbing minigame. i thought about using virtual worlds for each player so every player has its own tower to climb on (to prevent crowd). i wonder if using 20 virtual worlds at ...
54,516
Quote: Originally Posted by firstlast488 Can you give me the link of nativechecker plugin. https://sampforum.blast.hk/showthread.php?tid=249226 i legit just typed 'nativechecker' on th...
383
true that but im not familiar with y_timers yet thanks, it works <3
165
hmm error 017: undefined symbol "playerid" error 017: undefined symbol "playerid" error 021: symbol already defined: "@yH_OnPlayerConnect@004" error 017: undefined symbol "string" warning 209: functi...
165
i'm using zones include. i can't figure out how to make a timer to update my location textdraw so it tells me the right location always. it looks like this: http://prntscr.com/mzjz9z even though im a...
165
Quote: Originally Posted by SymonClash That's Zones include. holy moly man you are fast thanks a lot
54,516
this might not be the place to ask for this but.. i need the name of the system that tells me names of different parts of los santos. for example, im on vinewood - textdraw says 'GPS: Vinewood'
54,516
ehh.. it was my bad. my checkings for password, age, gender were fkd up. i fixed it. thanks though
273
still can't get it is it all the same? just matter of speed? edit: let's look at my example, why would i use switch for register and login dialog and if for dialog age and gender Код: public On...
273
i don't understand when to use 'case:' / 'switch' / 'if(dialogid == id)'
273
Quote: Originally Posted by antixgaming It is probably the script's fault. you mean include's ?
273
i made log/reg system by using easyDialog.inc and by reading this https://sampforum.blast.hk/showthread.php?tid=524344 tutorial as a guide. now, my problem is that everything is bugged af. when i wan...
273
Quote: Originally Posted by ConnorW Here pawn Код: if(dialogid == DIALOG_GENDER)    {        if(!response)        {            Kick(playerid);        }        e...
281
Quote: Originally Posted by ConnorW You can also do the dialog as a select list instead of input. pawn Код: ShowPlayerDialog(playerid, GENDER_DIALOG_ID, DIALOG_STYLE_LIST, "Select you...
281
doesn't work. nothing works, only when i leave it blank and press enter. then the dialog just closes. but other answers dont work at all. the dialog just shows over an over
281
now when I type anything it puts it as my gender for example i type 'a' it sends me a message my gender is 'a' id like to make male and female only valid answers(genders)
281
Quote: Originally Posted by TheToretto You can't compare strings like that. Use strcmp (cmp stands for compare) pawn Код: if(!strcmp(gender, "male") || !strcmp(gender, "female")) // t...
281
how to get dialog_style_input's input and check if it's one of the genders Код: if(dialogid == DIALOG_GENDER) { if(!response) { Kick(playerid); } ...
281