| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 425 online users. » 0 Member(s) | 422 Guest(s) Google, Bing, Baidu
|
| Latest Threads |
PROJECT: LOS ANGELES — TH...
Forum: Advertisements
Last Post: DevonH
Today, 01:43 AM
» Replies: 3
» Views: 638
|
Zona América del Sur DM+ ...
Forum: Advertisements
Last Post: kevinberriosflores
Yesterday, 10:59 PM
» Replies: 0
» Views: 17
|
Real-time pathfinder, opt...
Forum: Pawn Scripting
Last Post: ejtamovic
Yesterday, 02:06 PM
» Replies: 0
» Views: 44
|
The size of the output am...
Forum: Questions and Suggestions
Last Post: scandalfive
2025-12-01, 07:07 PM
» Replies: 0
» Views: 71
|
Garsiono's, Ricardo's, Tr...
Forum: Advertisements
Last Post: drwnrbbt
2025-12-01, 10:15 AM
» Replies: 0
» Views: 66
|
After School Roleplay [ R...
Forum: Advertisements
Last Post: cosminupgaming
2025-11-29, 09:39 PM
» Replies: 1
» Views: 317
|
Voltage Roleplay [English...
Forum: Advertisements
Last Post: JamesC
2025-11-29, 09:27 PM
» Replies: 0
» Views: 58
|
Vice WRLD Freeroam/RP
Forum: Advertisements
Last Post: pdjumailiev
2025-11-24, 11:30 AM
» Replies: 0
» Views: 124
|
Wanting to Start a RP Ser...
Forum: Chat
Last Post: Wein
2025-11-24, 09:07 AM
» Replies: 1
» Views: 265
|
Help me for creating a fr...
Forum: General Discussions
Last Post: [Rs]VeNoM
2025-11-23, 07:33 AM
» Replies: 0
» Views: 103
|
|
|
| Run time error 19: "File or function is not found" |
|
Posted by: Boxi - 2021-03-07, 02:17 AM - Forum: Pawn Scripting
- Replies (6)
|
 |
Hello, it's me again :P Well, many of you will already know this famous error:
Code: [21:42:01] [debug] Run time error 19: "File or function is not found"
[21:42:01] [debug]? WP_Hash
[21:42:01] [debug] Run time error 19: "File or function is not found"
[21:42:01] [debug]? WP_Hash
[21:42:01] Script[gamemodes/roleplay.amx]: Run time error 19: "File or function is not found"
The fact is that I did everything to solve it, such as updating all the plugins and libraries until the code was compiled again. But nothing solves it :c any ideas? Thank you!
Here is a list of the libraries that I am using:
Code: #include <crashdetect>
#include <a_mysql>
#include <foreach>
#include <easyDialog>
#include <eSelection>
#include <sscanf2>
#include <streamer>
#include <zcmd>
Postscript: Gm compiles without any problem
|
|
|
|
| Server crashed |
|
Posted by: RodrigoMSR - 2021-03-06, 11:17 PM - Forum: Support
- Replies (5)
|
 |
Type: Server
Operating System:?Linux (Debian 10)
Server Version: 0.3.7-R3
Plugins Installed: Yes
Plugins (If above is yes):?streamer,?sscanf,?mysql,?filemanager,?pawnraknet
YSI Included: Yes (y_iterate, y_hooks)
Output (Logs):?https://pastebin.com/j4NhpLBC
This crash happened suddenly and it was only once, it had never happened before in this way, what could have caused it??Considering the log, it doesn't seem to be related to any plugin...
|
|
|
|
| Texture Studio doors not opening |
|
Posted by: Kevinas - 2021-03-05, 08:03 AM - Forum: Support
- Replies (2)
|
 |
When I rotate a door it rotates visually, but it's axis doesn't change and stays in the same position, so whenever I rotate a door it opens and closes in the same spots as before, has anyone ever encountered this?
|
|
|
|
| Texture Studio doors not opening |
|
Posted by: Kevinas - 2021-03-05, 07:30 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
When I rotate a door it rotates visually, but it's axis doesn't change and stays in the same position, so whenever I rotate a door it opens and closes in the same spots as before, has anyone ever encountered this?
EDIT: sorry, wrong thread
|
|
|
|
| SetObjectMaterial question!? |
|
Posted by: gokuta - 2021-03-05, 01:03 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
My question is... how do I set material using SetObjectMaterial() that is available in TXD file, but?not used on any object at all! There are plenty of materials never used on any object... please help :(
|
|
|
|
| SetPlayerChatBubble - ?Help! |
|
Posted by: Uxknvwn - 2021-03-04, 05:27 PM - Forum: Support
- Replies (2)
|
 |
Hi, i hope you are well.?need help based on the "SetPlayerChatBubble" .? how do I make a pickup appear on top of the player using the function ...? example, i want the pickup 1247 (star) to appear above the player through a command, i hope that you can help me
Could serve: Text3D, Update3DTextLabelTex
|
|
|
|
| CMD /id |
|
Posted by: Hitler - 2021-03-01, 10:52 PM - Forum: Pawn Scripting
- Replies (5)
|
 |
Espa?ol:?Tengo un problema con este comando, cuando uso /id aparece el id del jugador y otros datos (ping, fps, pk), tambi?n aparece la hora y fecha, el problema es que aveces muestra solo la hora y fecha y otras veces muestra la id y los otros datos (ping, fps, pk)
English: I have a problem with this command, when I use / id it shows the id of the player and other data (ping, fps, pk), it also shows the time and date, the problem is that sometimes it shows only the time and date and other times it shows the id and the other data (ping, fps, pk)
Code: CMD:id(playerid,params[])
{
new jugador;
if(sscanf(params, "r", jugador)) return SendClientMessage(playerid, -1, "Usa: /id [ID/Nombre]");
if (!IsPlayerConnected(jugador)) return SendClientMessage(playerid,GRIS,"No se encontr? ning?n jugador");
new Float:pPacket = GetPlayerPacketLoss(jugador);
new string[200];
format(string,sizeof(string), "Nombre:?%s ID:?%d FPS: %d Ping: %d | PacketLoss:?%.1f%%",Nombre(jugador),jugador,FPS[jugador],GetPlayerPing(jugador),pPacket);
SendClientMessage(playerid,0xffffffff,string);
new hora,minuto,segundo,d,m,a;
getdate(a, m, d);
gettime(hora, minuto,segundo);
new string2[200];
format(string2,sizeof(string2), "Hora: %d:%d:%d Fecha: %d/%d/%d",hora,minuto,segundo,d,m,a);
SendClientMessage(playerid,0xffffffff,string2);
return 1;
}
|
|
|
|
|