gidzdlcrz
Members-
Content Count
74 -
Joined
-
Last visited
-
Days Won
1
gidzdlcrz last won the day on October 25 2020
gidzdlcrz had the most liked content!
About gidzdlcrz
-
Rank
Advanced Member
Profile Information
-
Github
gidzdlcrz
-
gidzdlcrz reacted to an answer to a question: Capping Perfect Dodge Altogether
-
gidzdlcrz reacted to an answer to a question: Custom Skill Effect
-
i second this. Thanks!
-
Unauthorized AndRO usage by Skyzone Hosting
gidzdlcrz replied to meyraw's topic in General Discussion
Here's the thread in rA HERE -
gidzdlcrz reacted to a post in a topic: Party Match
-
Weird discovery. Sometimes it doesnt have a problem. Sometime it does. Look at the animation. The slow ones is the custom statue. I wonder why.
-
deviruzy reacted to an answer to a question: MySQL Workbench, How to load. please?
-
MySQL Workbench, How to load. please?
gidzdlcrz replied to deviruzy's question in General Server Support
from there. You click the OPEN SQL SCRIPT FILE. After you saw the texts generated in your query window hit the lightning logo. Do the same with logs. -
gidzdlcrz reacted to an answer to a question: WoE Castle auto Assign on Guild
-
gidzdlcrz reacted to an answer to a question: WoE Castle auto Assign on Guild
-
gidzdlcrz reacted to a question: hosting Hercules on Google Cloud with CentOS 8
-
gidzdlcrz reacted to a post in a topic: @packetfilter
-
Additional Feature for my own Broadcaster NPC
gidzdlcrz replied to gidzdlcrz's question in Script Requests
lol 😂 -
Additional Feature for my own Broadcaster NPC
gidzdlcrz replied to gidzdlcrz's question in Script Requests
Oh! my wish is granted! ♥ Ofcourse i do! -
gidzdlcrz reacted to an answer to a question: Additional Feature for my own Broadcaster NPC
-
Hello hercules folks. Ive been using this broadcaster npc of mine way back year 2014. Now i would like to update its feature. prontera,187,210,3 script Broadcaster#1::BC 894,{ set @npcname$, "^FF9300 Broadcaster ^000000"; set @header$,"[^0000ff" + @npcname$ + "^000000]"; set broadcastfee, 3000000; mes @header$; mes "Hi, I'm the Broadcaster."; mes "I can Broadcast a message for you."; mes " "; mes " "; mes " "; mes "It costs ^ff0000"+ broadcastfee +"^000000 zeny."; next; mes @header$; mes "Would you like to Broadcast?"; next; switch (select("Yes","Nevermind")){ case 1: if(Broadcast> gettimetick(2)) { mes @header$; mes "Sorry you have to wait for 1 min."; close; } mes @header$; if(Zeny<3000000) goto $nozenybc; set Zeny,zeny - broadcastfee; mes "Please input your message."; next; input broadcast$; announce "Shout from "+strcharinfo(0)+": "+broadcast$+"",0,0x5AFF00; // Edit 5AFF00 for color code HTML Color Code close2; set Broadcast, gettimetick(2)+60; //Timer 60 = 1 minute/s dispbottom "Broadcaster: Please wait for 1min until next broadcast to avoid flooding."; end; case 2: mes @header$; mes "Suit yourself."; close; } $nozenybc: mes "You don't have enough zeny."; close; } ^ This is the script. Simple Broadcaster NPC with a fee for every broadcast. Now there's this Ragnarok Server that using somehow similar NPC. Yet, they have 3rd option. Its called Automated Broadcast. Check my screenies below. This is the broadcaster NPC with Auto Broadcast menu. (see the rest of the screenshot below to see how the NPC's behavior) After you input your desired number you can review it to proceed or not. Annie made me a script which is similar to this one. Can be used as a case 3 for my script. But i dont know how to link it to my current script. Also, its asking for item. I cant make it to ask for zeny instead. Here's what annie wrote. prontera,155,185,5 script sjdfsdlf 1_F_MARIA,{ mes "input your broadcast message"; mes "each broadcast use 1 "+ F_MesItemInfo(Poring_Coin); if (!countitem(Poring_Coin)) close; next; input .@text$; mes "input how many times to broadcast"; next; input .@num; if (countitem(Poring_Coin) < .@num) { mes "you don't have enough "+ F_MesItemInfo(Poring_Coin); close; } mes "after closing this dialog box I'll start broadcast"; close2; if (countitem(Poring_Coin) < .@num) { // hacking recheck mes "you don't have enough "+ F_MesItemInfo(Poring_Coin); close; } delitem Poring_Coin, .@num; while (.@loop++ < .@num) { announce .@text$, bc_all; sleep 1000; } end; } Good Script indeed. Thank you so much!
-
gidzdlcrz reacted to a question: How to setup OFFLINE server for personal development use
-
AnnieRuru reacted to a post in a topic: Dota PVP Ladder
-
rAthena conversion annie. Thanks!
-
Waiting for this. Imagine some people would like to have some peace and quiet time. They will be opt out to PVP Announcements. Hehe! Anyway here's the script you can add to manually truncate the PVP Ladder (Must be 99 GM Account). Again, same principle. Just add the BOLD to the script. Find these lines.
-
Me my Cyclop's Eye. Lol
-
AnnieRuru reacted to a post in a topic: Dota PVP Ladder
-
For the people who wants their costume robe to show up! Find these lines and add this BOLD. Alright. *Edit again. I forgot to mention that this is for rathena. 😝
-
OMG its really Christmas! Those small fonts. 😁
-
Wow this is huge jump from 2.9. This comes with statues too! Is it Christmas? Thanks annie! Will this work to rathena?
-
Hey @AnnieRuru. It works! Sorry for the late feedback.
-
I second this. Think of it as same function but different approach. Thanks annie! ♥