Search the Community
Showing results for tags 'question'.
Found 3 results
-
So i have strings "Test1", "Test2", "Test3", "Test4" and so on. Any way to get integer from it? 1,2,3,4 Without if (a = "Test1") b := 1; else if (......
-
I have a few questions regarding where I can post stuff and what I am limited to. I want to write some guides for really basic things. Pretty much all of them already exist, but some of them are difficult to comprehend for first-timers. Having only recently come to the world of ro emulators, I still feel kind of new and feel my perspective would be helpful. 1. Where can I post these? 2. Can I make a guide for something that already exists?
-
Hi, I'm trying to make an NPC which players can donate zeny to, and the zeny count is for every player - as in when one player donates, it updates a tally for everyone else (stored in NPC). If I use .server_donate (as shown in example below), will it disappear when I restart my server? Thank you in advance. prontera,150,150,3 script Server Donation NPC 4_F_TELEPORTER,{ mes "Players have donated " + .server_donate + " zeny."; mes "How much zeny do you want to donate?"; next; input .@donate; if (Zeny < .@donate) { mes "You need more zeny"; close; } else { Zeny -= .@donate; .server_donate += .@donate; mes "You donated " + .@donate + " z."; close; } }