Pawn, formerly known as Small, is an open source scripting language primarily intended as an embeddable scripting language

learn more… | top users | synonyms

1
vote
1answer
42 views

Hash function from 2 different languages not giving same result

I have this function in the scripting language "PAWN": stock hash(Hash[]) { new hStr1 = 1, hStr2 = 0; for(new i = 0, l = strlen(Hash); i < l; i ++) { hStr1 = (hStr1 + ...
0
votes
1answer
30 views

Passing an array variable through an associated array in PAWN (.p files)

I am new to the programming world (and very excited to be a part of it). I believe What I am trying to do is very simple, however I can't find a whole lot on PAWN file programming that isn't for ...
0
votes
0answers
55 views

C++ write to amx 2 dimensional array [closed]

C++ write to amx 2 dimensional array Hey, I'm trying to write specific point in 2 dimensional array at AMX with C++, It simply called PLUGIN. Here is my PAWN (AMX) code: new MyArray2D[32][32]; ...
0
votes
0answers
11 views

Fixing weird behavior of ExplodeString in SourcePawn

I'm trying to implement an automatic Directoryscan searching for soundfiles for my CS:S Plugin. The Sound files have a specific name convention containing their use ('win' for winsongs and 'kf' for ...
0
votes
0answers
20 views

getting current executing script name

Just wondering if and how it's possible to get the name of the currently executing script like in php __FILE__ or dos batch %0 OR ARG[0] in C (I think?) I tried looking through the documentation and ...
0
votes
2answers
83 views

What are possible ways of converting these bitmask definitions from pawn language to PHP?

Well, to clarify, pawn is a language that is pretty similar to C++. I'm programming an Admin Control Panel that requires bit mask permissions (in php) and I actually don't know if I converted the ...
0
votes
2answers
139 views

custom ITOA not working right?

I wanted to make a custom ITOA function to put large numbers into small strings, this is what I have coded : main(){ printf("itoa(2000000000,36)= '%s'",itoa(2000000000,36)); ...
0
votes
0answers
58 views

What do all these XML functions mean and how can I read the XML file?

I am coping with a little issue about reading XML data into my applications memory via a script that uses a plugin. I Only create the script because the application (SA-MP .com) is already made by ...
0
votes
1answer
67 views

String contains or regex in pawn scripting language

or example if(playerName.Contains("<") || playerName.Contains("-")){ } or how i can check string with regex pattern(^[-0-9A-Za-z_]{5,15}$) Thanks
-3
votes
2answers
183 views

What is the equivalent of mysql_real_escape_string for the Pawn language? [closed]

I need the regex code for Pawn. I need a code which I can use with preg_replace, too. Also what i use, is worse... So, my code is. $text = preg_replace('/([\\\\\|\'|"])/', '\\\$1', $text); Is ...