Jump to content

Z3R0

Members
  • Posts

    618
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Z3R0

  1. Sorry there hasn't been much dev on this lately guys... my laptops been in shambles...I should be able to do more this weekend
  2. I was only revising what was already given, but very nice kenpachi
  3. // Modified to use an array index of maps (multiple maps) - script woekiller -1,{ OnPCKillEvent: getmapxy (.@map$, .@x, .@y, 0); set .@woe_maps$[0],"prontera","geffen"; for (set .@a, 0; .@a < getarraysize(.@woe_maps$); set .@a, .@a + 1) { if( .@map$ == .@woe_maps$[.@a]) { mapannounce .@woe_maps$[.@a],""+strcharinfo(0)+" has killed "+ rid2name(killedrid) +".",1,0xD6A4E6; end; } } }
  4. Yes, we have been in debate about whether or not to keep TXT, and surprisingly the community has shown that they don't require TXT Support (most use sql)
  5. That's the plan. I apologize for not being able to do anything lately... I am currently undergoing pc maintenance on my laptop
  6. You need to use TABS int eh header prontera,158,173,4<TAB BUTTON>script<TAB BUTTON>Coin Exchange<TAB BUTTON>88.{ Also be sure to modify setarray .coin_id[0],silver,gold,plat,mithril; setarray .coin_trade_amount[0],5,4,3,2; setarray .coin_trade_coin[0],bronze,silver,gold,plat; change the words to the item id's of the coins...
  7. Using block comments on single lines underneath make it look overly complex... I would suggest the full block @ the top (what it does) then a mini block above each line of code /* * This is my super script from source and stuff kk? */ if (sd->rawr) { /* checks to see if he's online */ if (a == { } } /* end */
  8. Z3R0 -> Zerocool Hackers... Favorite Movie
  9. Yes, we were awaiting Ind's recovery, which has now happened... We are now (or should I say) Ind is now, merging...
  10. Untested (because I'm at work) prontera,158,173,4 script Coin Exchanger 88,{ mes .npc$; mes "What would you like to do?"; switch(select("Info:Trade for Coin")) { case 1: // Get Info next; mes .npc$; for (set .@a, 0; .@a < getarraysize(.coin_id); set .@a, .@a + 1) { mes "1 " + getitename(.coin_id[.@a]) + " = " + .coin_trade_amount[.@a] + " " + getitemname(.coin_trade_coin[.@a]) + "s"; } close; case 2: // Trade Coin next; mes "Please select which coin you would like..."; // Build Menu for (set .@a, 0; .@a < getarraysize(.coin_id); set .@a, .@a + 1) { set .@menu$, .@menu$ + (.@menu$ == "" ? "" : ":") + getitemname(.coin_id[.@a]); } set .@coin_choice, select(.@menu$) - 1; if (countitem(.coin_trade_coin[.@coin_choice]) < .coin_trade_amount[.@coin_choice]) { mes "You do not have enough items..."; close; } mes "Ok! Let me do a little magic..."; next; mes "and.... Here you go..."; delitem .coin_trade_coin[.@coin_choice], .coin_trade_amount[.@coin_choice]; getitem .coin_id[.@coin_choice], 1; mes "Enjoy!"; close; } OnInit: set .npc$, "[Coin Exchanger]"; setarray .coin_id[0],silver,gold,plat,mithril; setarray .coin_trade_amount[0],5,4,3,2; setarray .coin_trade_coin[0],bronze,silver,gold,plat; end; }
  11. Bronze, Silver, Gold, Plat, Mithril is the order JGuy
  12. Moved to Requests. Notified User of Wrong Section
  13. iFoxKun something wrong with your upload? ( null )
  14. I will do a few more tutorials tonight...
  15. Z3R0

    SQL

    This topic is currently under review
  16. Z3R0

    REMOVED

    @Toshiro I understand that you weren't @ home, it's just, he quickly attacked the OP, when it was obvious he didn't really know how to script something like this in the first place...
  17. Z3R0

    Profile Fields

    Server Originally set to 10 Location - Already 20 Server - Made to 20 Marked as Done
  18. Z3R0

    REMOVED

    @Epoque or the person giving it to him should've tested it... You can't blame someone "requesting" a script, (meaning they can't obviously script it themselves) to debug a script...
  19. Approved and Added
  20. ya, ok I thought it was a recent addition... lol, been doing this for a while now, never knew about block commenting and no script I've ever seen used it
  21. Guess I will create a video on commenting considering I was not aware you could block...
  22. Good to know actually... I did not know that was implemented...
  23. O.o, since when did they allow block commenting?
  24. Apparently, there was an attempt to DDOS our server (Someone's scared of us) We have managed to resolve this issue, and as such, you can see that our forums are now back online. No files were harmed during the attempt. Thanks, Z3R0
  25. I showed how to add a comment on the first few videos... you can only use // this is a comment
×
×
  • Create New...