Jump to content

-SkittleNugget-

Members
  • Posts

    318
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by -SkittleNugget-

  1. You mean a GM was able to ignore the walk path of a map ?
  2. I believe its because of a "merchant tax" in one of the config files. Cant remember which one though
  3. prontera,150,180,5 script your newbienpc 56,{ OnPCLoginEvent: if(!#oldplayer) { mes "wanna do the newbie quest?"; next; if ( select( "yes", "no" ) -1 ) end; // your newbie quest set #oldplayer,1; } }
  4. Anything is possible. Use OnPCLoginEvent:
  5. You might get a quicker reply if you explain what you are asking.
  6. Check all the scripts recently added, I did not read your post correctly. I believe an NPC is trying to call the Skill ID 0 from the Skill Database. (But that don't exist :: TYPO?)
  7. It says, that the" Skill with id 0 does not exist in the skill database". Check your skill database for the skill with ID 0
  8. try add at the very top OnInit: set .npcStart,0; end;
  9. On Line 28, Change to mes "Hello " + strcharinfo(0); mes "I am exchanging " + .coinAmount + " Poring coins right now for 1 TCG Card.";
  10. Should do, Might be wrong since @load is considered to warp you also LOGICALLY. Give it a try. Yes it will stop you @warping there.
  11. Yes Its possible. Are you requesting for it to be made or just asking if its possible ? Havn't tested or checked, I also believe its poorly written but should work for now. location,x,y,look script Exchanger 345,{ // hello guys // Is it possible to make a script with the following conditions? // this script like skull exchanger // -poring coin to TCG // -its will give random amount 1k-4k poring coin to exchanger 1 TCG // -and this npc will only showup on 13:00,18:00,And 22:00, server time ///7539 (Poring_Coin) ///7227 (TCG_Card) OnClock1300: callsub createCoinRandom; set .npcStart,1; end; OnClock1400: set .npcStart,0; end; OnClock1800: callsub createCoinRandom; set .npcStart,1; end; OnClock1900: set .npcStart,0; end; OnClock2200: callsub createCoinRandom; set .npcStart,1; end; OnClock2300: set .npcStart,0; end; //===================================================================== createCoinRandom: set .coinAmount, rand(1000,4000); //Set Random Coin Amount; return; //==================================================================== if (.npcStart) //IF OPEN { mes "[Exhanger]"; mes "Hello " + strcharinfo(0)"; mes "I am exchanging " + .coinAmount + " Right now for 1 TCG Card."; next; if(select("Make the trade:Walk away")==2) close; mes "[Exchanger]"; if(countitem(7539)<.coinAmount) { mes "You need to bring me " + (.coinAmount - countitem(7538)) + " more Poring Coins before I complete this trade"; close; } mes "Here you go, Enjoy"; delitem 7538,.coinAmount; getitem 7227,1; close; } //IF CLOSED. mes "[Exchanger]"; mes "Sorry, I am currently restocking items for opening later."; close; }
  12. You want a command to be used by only one class. ?
  13. Did you recompile using visual studio once you edited mmo.h ?
  14. Was it @questitem or just "questitem" in chat anytime ?, do u have to type something in the whisper box ?
  15. Use this link as a reference to creating a Ragnarok Server. http://svn.games-service.net/guide-mysql5.htm
  16. To add to what Brian Said, Make sure to allow the program to run through windows firewall also.
  17. que_temsky,144,141,0 script warp 45,2,2,{ OnInit: set .password$, "Password"; end; OnTouch: mes "You need a password to enter here."; next; if(select("Enter Password:Move away.")==2) close; mes "Enter the password"; next; input .@input$; if (.@input$ != .password$) { mes "^ff0000Incorrect^000000.!"; close; } warp "que_temsky",151,133; end; } Problem was : if (.@input != .password$) Should be if (.@input$ != .password$)
  18. Look in "db" folder for the file named, "const". Notice "IG_Advanced_Weapons_Box 61"; go into "re" folder if using renewel, open "item_misc.txt" use alt+F and look for 61. Those are the full contents, item and rate of each item that can be gotten from the box. // GroupID,ItemID,Rate
  19. location,x,y,angle script warp 45,{ OnInit: set .password$, "Password"; end; OnTouch: mes "You need a password to enter here."; next; if(select("Enter Password:Move away.")==2) close; mes "Enter the password"; next; input .@input$; if (.@input != .password$) { mes "Incorrect.!"; close; } warp "location",x,y; end; }
  20. What are the requirements ? What is the Prize ?
  21. Are you using wireless network or an Ethernet ?
  22. Recheck your database view ID and than your Lua files.
×
×
  • Create New...