Jump to content

Pinoy Fury

Members
  • Posts

    37
  • Joined

  • Last visited

About Pinoy Fury

  • Birthday 03/27/1994

Profile Information

  • Gender
    Male
  • Location
    Quezon City, Philippines
  • Server
    PinoyFuryRO
  • Interests
    Women

Contact Methods

Recent Profile Visitors

3027 profile views

Pinoy Fury's Achievements

Poring

Poring (1/15)

2

Reputation

4

Community Answers

  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;
×
×
  • Create New...