Jump to content

Pinoy Fury

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by Pinoy Fury

  1. Someone please reupload this cool tool? Thankies!
  2. 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;
  3. 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!
  4. Does anyone know the formula in generating the renewal statpoint.txt?
  5. You have to declare them in src/common/mapindex.h e.g #define MAP_CELL_GAME "mapname"
  6. Do not include 'Enable Proxy Support' when diffing your client.
  7. 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!
  8. I saw a paid version of the command, I tried to do one and somehow it works for me. Try this out.
  9. It is because the player is dead and was warped. The player must be resurrected first before warping it back.
  10. 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; }
  11. 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.
  12. You can add it anywhere before the end of the script. You can add it below OnInit.
  13. 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;
  14. Execute this in the npc: query_sql "DELETE FROM `global_reg_value` WHERE str='MVPRank'";
  15. Is it possible to change the yellow color of GM names to Red? By hexing the client? Thanks!
  16. Is it possible to change the color name from yellow to red? or other colors in hex?
  17. S<length of string>"String" e.g S24"Name"
  18. Your lua files might be incompatible with your client(not sure).
  19. Can you post the source code of item_deny? It would be easier.
  20. 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 );
  21. Line 1282 - ( "stalker epic", 35} has incorrect syntax. Change '(' to '{'
  22. 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;
×
×
  • Create New...