| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 257 online users. » 0 Member(s) | 255 Guest(s) Bing, Google
|
| Latest Threads |
PROJECT: LOS ANGELES — TH...
Forum: Advertisements
Last Post: DevonH
Yesterday, 05:53 PM
» Replies: 12
» Views: 1,375
|
open.mp ready DayZ gamemo...
Forum: Gamemodes
Last Post: Bombo
Yesterday, 07:50 AM
» Replies: 0
» Views: 57
|
samp-essentials
Forum: Libraries
Last Post: 1NS
2026-02-07, 12:51 PM
» Replies: 0
» Views: 35
|
problem dialog clan membe...
Forum: Pawn Scripting
Last Post: selmir.beha
2026-02-07, 05:13 AM
» Replies: 2
» Views: 138
|
Unban
Forum: Chat
Last Post: stryzo125
2026-02-06, 11:59 PM
» Replies: 2
» Views: 139
|
It has been a while
Forum: Chat
Last Post: Mauzen
2026-02-06, 08:36 PM
» Replies: 0
» Views: 40
|
HWID BAN
Forum: Questions and Suggestions
Last Post: stryzo125
2026-02-06, 03:27 PM
» Replies: 2
» Views: 1,908
|
Looking for Players for N...
Forum: Chat
Last Post: AlmightyJeremy
2026-02-04, 11:22 PM
» Replies: 0
» Views: 37
|
Manual sorting of servers...
Forum: Questions and Suggestions
Last Post: cherybomb
2026-02-04, 02:58 AM
» Replies: 2
» Views: 1,444
|
Project: Las Venturas Rol...
Forum: Advertisements
Last Post: Kremzy
2026-02-02, 10:14 PM
» Replies: 0
» Views: 70
|
|
|
| Textdraw Actions |
|
Posted by: ForT - 2021-04-10, 06:28 AM - Forum: Libraries
- Replies (4)
|
 |
Textdraw Actions
A simple include that shows a small action box in the center of the screen with options Y and N for the player to choose.
Download
https://github.com/dimmyi/td-actions
Preview:
Image: https://i.imgur.com/90W43SI.png
![[Image: 8VQLmcn.gif]](https://i.imgur.com/8VQLmcn.gif)
Usage:
PHP Code: #include <td-actions>
CMD:infernus(playerid)
{
? ? ShowActionForPlayer(playerid, ActionInfernus, "Do you really want to spawn a infernus in this position?", .action_time = 10000);
? ? return 1;
}
Action:ActionInfernus(playerid, response)
{
? ? if (response == ACTION_RESPONSE_YES)
? ? {
? ? ? ? new Float:x, Float:y, Float:z, Float:ang;
? ? ? ? GetPlayerPos(playerid, x, y, z);
? ? ? ? GetPlayerFacingAngle(playerid, ang);
? ? ? ? new vehicleid = CreateVehicle(411,
? ? ? ? ? ? x 2.5 * floatsin(-ang, degrees),
? ? ? ? ? ? y 2.5 * floatcos(-ang, degrees),
? ? ? ? ? ? z 0.3,
? ? ? ? ? ? ang,
? ? ? ? ? ? 0,
? ? ? ? ? ? 0,
? ? ? ? ? ? -1);
? ? ? ? LinkVehicleToInterior(vehicleid, GetPlayerInterior(playerid));
? ? ? ? SetVehicleVirtualWorld(vehicleid, GetPlayerVirtualWorld(playerid));
? ? } else {
? ? ? ? SendClientMessage(playerid, -1, "You didn't want to spawn a infernus.");
? ? }
}
Responses:
- ACTION_RESPONSE_NO_CHOOSE - When the player does not choose an option
- ACTION_RESPONSE_NO -?When the player presses the N key
- ACTION_RESPONSE_YES -?When the player presses the Y?key
|
|
|
|
| SHA256 SALT in PHP? |
|
Posted by: CoPete? - 2021-04-08, 08:59 PM - Forum: Programming
- Replies (1)
|
 |
Hi!?please I would like you to help me authenticate the users on the web page, the problem I have is that I use in the gamemode the password settlement system sha256 a salt that I got in forum samp (maybe they know which)?and I don't know how I could do an autiticator?in php, thanks
|
|
|
|
| Help |
|
Posted by: Nightmare - 2021-04-08, 04:45 PM - Forum: Pawn Scripting
- Replies (2)
|
 |
hello i'm new in pawn scripting, i'm compiling a filterscript, and appears this error: "undefined symbol 'AddSimpleModel'". I searched how solve it but i don't found solutions. Can someone help?
img link:
https://prnt.sc/117hc5z
|
|
|
|
| Dialog selection doesn't work. |
|
Posted by: Axitz - 2021-04-08, 03:57 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Hi sorry for keep creating thread.
I'm not really familiar with dialog system, therefore I tried creating it in dialog version but it doesn't work like what I wanted it to be.
I clicked one of the vehicle but it select everything and unimpound everything I owned plus the faction vehicles.
I have to upload it on pastebin due to thread messed up the code.
https://pastebin.com/raw/BG9f6WQn
|
|
|
|
| A correctly installed Filterscript (driverfs) does not work. |
|
Posted by: Boxi - 2021-04-07, 06:33 PM - Forum: Pawn Scripting
- Replies (2)
|
 |
Hi it's me again :C (I think I'll get banned from this forum if I keep posting so often :P)
Anyway, I need your help to install this FilterScript?https://github.com/Naseband/SAMP-Driver-FS??I downloaded and installed all the libraries it requires, I compiled it without problems, but when I install it on the server and try to use a command I get the message "Unknown command" when the command I use is defined, basically it's as if the FS does not start.
Someone already tried to install this FS or know how to solve this problem? I would appreciate your help. Greetings to all!
|
|
|
|
| Not sending an error message |
|
Posted by: Axitz - 2021-04-07, 02:32 PM - Forum: Pawn Scripting
- Replies (5)
|
 |
I have this problem when I use the other method, it does work but if I change it the way I wanted, it doesn't. Please help.?
This one does work.
PHP Code: if(Vehicles[vehicleid][impounded] == 1) return SendClientMSG(playerid, COLOR_RED, "{ff6347}Error: Unable to spawn because it is impounded.");
This one doesn't work. No Idea why.
PHP Code: if(Vehicles[vehicleid][impounded] == 1) return SendClientMSG(playerid, COLOR_RED, "{ff6347}Error: Unable to spawn %s (ID: %d) because it is impounded.",GetVehicleName(Vehicles[vehicleid][vrID]), vehicleid);
|
|
|
|
| What is ColAndreas for? |
|
Posted by: Boxi - 2021-04-07, 01:39 PM - Forum: Pawn Scripting
- Replies (3)
|
 |
I've seen it, on several sites. But I don't know what it is or what it's for, its description on GitHub doesn't tell me much. Does anyone know? thanks!
|
|
|
|
|