Pinoy Fury
Members-
Posts
37 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Pinoy Fury
-
Someone please reupload this cool tool? Thankies!
-
Just add it in atcommand.c Add above: ACMD_FUNC(login) { set_eof(fd); map_quit(sd); return 0; } /** * Fills the reference of available commands in atcommand DBMap **/ and above ACMD_DEF(login), }; AtCommandInfo* atcommand;
-
Has anyone encounted this error? This happens when I equip with a Main Gauche on a guillotine cross. Client used is 2012-05-25RagexeRE. Thanks in advaaaance!
-
Does anyone know the formula in generating the renewal statpoint.txt?
-
You have to declare them in src/common/mapindex.h e.g #define MAP_CELL_GAME "mapname"
-
Closed connection from '127.0.0.1' with Client Freezing&Crashing
Pinoy Fury replied to Nyashuki's question in Installation Support
Do not include 'Enable Proxy Support' when diffing your client. -
Is there a way to auto press the OK button when a player gets disconnected? Or something to send a signal to the client that the 'OK' button is pressed? I'm trying to use the disconnected from server function to go back to the log in screen. But if it's automatic without having to press the OK button, it would be better, at least for me. Thanks!
-
I saw a paid version of the command, I tried to do one and somehow it works for me. Try this out.
-
[Release] 2012-04-10a with no weapon item id restriction
Pinoy Fury replied to Neo-Mind's topic in Client Releases
Great release. Thanks! -
It is because the player is dead and was warped. The player must be resurrected first before warping it back.
-
[Tool] Bitmask Calculator - Item Jobs & Monster Mode
Pinoy Fury replied to Myzter's topic in Database Releases
Perfect -
About reward distribution to all party members
Pinoy Fury replied to muzika's topic in Tulong para sa Script at Database
Let @winner$ = variable for party name of the winner prontera,123,123,4 script Event Prize 123,{ if(getcharid(1) == @winner$) { mes "Congrats! Here's your prize."; close2; getitem @itemid,@amount; end; } mes "Sorry, but your party didn't win."; close; } -
Restriction of skills after 3 players in the map are left
Pinoy Fury replied to Lord Ganja's question in Scripting Support
You have to have some timer and check the number of players in a map using 'getmapusers()'; E.g if(getmapusers() <= 3) setmapflag "map_name",mf_noskill,1; then you also have to add: removemapflag "map_mame",mf_noskill,1; so that when the event restarts skills are enabled. -
You can add it anywhere before the end of the script. You can add it below OnInit.
-
Add this: OnWhisperGlobal: if (getgroupid() < 20) end; //Put minimum GM level here query_sql "DELETE FROM `global_reg_value` WHERE str='MVPRank'"; dispbottom "MVP Ranking has been reset."; end;
-
Execute this in the npc: query_sql "DELETE FROM `global_reg_value` WHERE str='MVPRank'";
-
Is it possible to change the yellow color of GM names to Red? By hexing the client? Thanks!
-
Is it possible to change the color name from yellow to red? or other colors in hex?
-
S<length of string>"String" e.g S24"Name"
-
Your lua files might be incompatible with your client(not sure).
-
Can you post the source code of item_deny? It would be easier.
-
You have to add "NULL" before "bl" in the sc_start function since in the latest rev sc_start's has 6 arguments. e.g. sc_start(NULL, bl, SC_STRIPWEAPON, 100, skill_lv, d );
-
Line 1282 - ( "stalker epic", 35} has incorrect syntax. Change '(' to '{'
-
How to make this script warp the player first to the said map before creating the pub? What it currently does is it creates the public chat right away after you type the command, not after you warp. Thanks in advance! pc_setpos(sd, mapindex_name2id("prontera"), (rand() % 6 + 11), (rand()% 22 + 9), CLR_TELEPORT); if(mapindex_name2id("prontera")) { chat_createpcchat(sd, atcmd_output, "", 2, 1); } return 0;
-
Nevermind. Got it.