Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot Search Results

Pages (5): 1 2 3 4 5 Next »
Search Results
Post Author Forum Replies [asc] Views Posted
  Thread: What city of the country are you from?
Post: RE: What city of the country are you from?

Netherlands. Born in Meppel, raised in Ruinerwold and since a year of two living in Zwartsluis (which is near Giethoorn)
Kwarde Chat 83 75,449 2021-05-21, 07:53 AM
  Thread: Post Your Setup!
Post: RE: Post Your Setup!

Potassium Wrote: (2020-11-16, 12:01 PM) -- https://i.imgur.com/ERdD21l.png -- That is super duper cute tho UwU
Kwarde Chat 62 54,743 2021-07-22, 03:13 PM
  Thread: Algemene Discussies
Post: RE: Algemene Discussies

Jstylezzz Wrote: (2021-04-01, 12:59 PM) -- 2019 alweer, wat gaat de tijd hard. Like als je deze thread leest in 2021 B-) -- Hell yes! Ik bedoel, hel ja!
Kwarde Dutch/Nederlands 38 26,845 2021-06-14, 12:04 PM
  Thread: Infamous internet speed / speedtest.net thread
Post: RE: Infamous internet speed / speedtest.net thread

Banditul Wrote: (2019-10-31, 01:08 PM) -- 3.7€. Before i had from other ISP was paying 8.4€ for half the speed, im glad i switched (both fiber) https://www.speedtest.net/result/8720917745.png -- Wha...
Kwarde Chat 36 35,830 2020-10-02, 09:26 AM
  Thread: Infamous internet speed / speedtest.net thread
Post: RE: Infamous internet speed / speedtest.net thread

Pinch Wrote: (2020-10-14, 08:08 AM) -- Pretty sure it's written there -- Alot of people use VPN's (causing different ISP to show) and people might not use the closest host so asked just to be safe ;)
Kwarde Chat 36 35,830 2020-10-16, 05:59 AM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

You can use FileManager for that: https://github.com/JaTochNietDan/SA-MP-FileManager There is already an example on the Github page that shows you how to read files in a directory.
Kwarde Pawn Scripting 31 9,307 2021-02-13, 06:56 AM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

Cannot open or create file: === scriptfiles/Users/mems .in === Seems it is read as "scriptfiles/Users/mems\n.in" While reading your code just now: Quote: -- format(string, 28, "scriptfiles/U...
Kwarde Pawn Scripting 31 9,307 2021-02-14, 11:57 AM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

There's still a new line between "username" and ".ini"
Kwarde Pawn Scripting 31 9,307 2021-02-14, 02:38 PM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

Ah I see. You used filemode io_write. io_write clears the entire file before writing to it. You'll need io_append. https://open.mp/nl/docs/scripting/functions/fopen As for checking GSFLevel, just l...
Kwarde Pawn Scripting 31 9,307 2021-02-14, 01:53 PM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

You usually don't have to include "params[]" when not using it, thus: CMD:test(playerid). That way you don't have to use pragma unused. Runtime error 19 means the file or function is not found (as it ...
Kwarde Pawn Scripting 31 9,307 2021-02-14, 09:12 AM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

Quote: -- you should remove return statement in loop because it stops the loop. -- Not just the loop, though. Allow me to add this information for mems: - "continue" stops the current iteration of th...
Kwarde Pawn Scripting 31 9,307 2021-02-16, 06:01 AM
  Thread: how to load every user.ini in scriptfiles using YINI
Post: RE: how to load every user.ini in scriptfiles usin...

Why is it still not working? What do the logs say? As for the question, what kind of specific stuff are you talking about? (The answer is yes anyway)
Kwarde Pawn Scripting 31 9,307 2021-02-14, 12:19 PM
  Thread: Forum SAMP and SAMP Wiki Closed?
Post: RE: Forum SAMP and SAMP Wiki Closed?

Jimmy Wrote: (2021-05-24, 11:47 AM) -- btw even the forum archive is dead. -- There is (for now) still web-old.archive.org (instead of web.archive.org)
Kwarde Chat 28 29,024 2021-05-25, 06:46 PM
  Thread: Compile GM with VSCODE on Linux
Post: RE: Compile GM with VSCODE on Linux

See: https://github.com/pawn-lang/compiler/wiki/Const-Correctness Appearantly those warnings were disabled by -however/wherever you compiled before-.
Kwarde Support 21 1,982 2021-09-29, 07:22 PM
  Thread: Compile GM with VSCODE on Linux
Post: RE: Compile GM with VSCODE on Linux

Double posting here, but I started using pawncc on my Linux distro again (last time it wouldn't work, no idea why (multilib was on)). This is what I'm using: Code: -- { // See https://go.microso...
Kwarde Support 21 1,982 2021-07-10, 09:47 AM
  Thread: Compile GM with VSCODE on Linux
Post: RE: Compile GM with VSCODE on Linux

For starters, I believe you have to escape the semicolon and bracket.
Kwarde Support 21 1,982 2021-06-20, 10:57 AM
  Thread: how to get the last digit of a player's IP
Post: RE: how to get the last digit of a player's IP

Then you are still doing something wrong. Code: -- #include #include main() { new IP_LAN[] = "192.168.1.69", IP_PUBLIC[] = "86.88.190.219", ip_lan_part[4], i...
Kwarde Pawn Scripting 16 1,012 2021-07-16, 07:14 PM
  Thread: how to get the last digit of a player's IP
Post: RE: how to get the last digit of a player's IP.

Easiest (and, afaik the best) way would be with sscanf: Code: -- new ip[] = "192.168.2.10"; ip_part1, ip_part2, ip_part3, ip_part4 ; sscanf(ip, "pdddd", ip_part1, ip_part2, ip_pa...
Kwarde Pawn Scripting 16 1,012 2021-07-15, 11:09 PM
  Thread: how to get the last digit of a player's IP
Post: RE: how to get the last digit of a player's IP.

sscanf = unformat. See this: https://github.com/Y-Less/sscanf for full documentation.
Kwarde Pawn Scripting 16 1,012 2021-07-15, 11:56 PM
  Thread: how to get the last digit of a player's IP
Post: RE: how to get the last digit of a player's IP.

I editted my post while you were replying. Check out the last code, that does what you want ;-) And indeed. The strfind() thing I posted would accept all IPs starting with "192.168.1" (I don't see ho...
Kwarde Pawn Scripting 16 1,012 2021-07-15, 11:37 PM
Pages (5): 1 2 3 4 5 Next »

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald