Jump to content

Werdio

Members
  • Posts

    248
  • Joined

  • Last visited

Everything posted by Werdio

  1. Thank you! I hope it will works ^^
  2. I want to make a script where the players become all 20 minutes a "Snow Flake". Here an example: - script Snowflake -1,{ OnTime0000: getitem 12491,1; end; I tried to make a script like this ... please help me x.x
  3. Thank you Emistry .. ;>
  4. I put the map "walhalla" into atcommand.c Then I recompiled Then this error massage came: http://imageshack.us...3/errorwnu.png/ /*========================================== * @go [city_number or city_name] - Updated by Harbin *------------------------------------------*/ ACMD_FUNC(go) { int i; int town; char map_name[MAP_NAME_LENGTH]; int m; const struct { char map[MAP_NAME_LENGTH]; int x, y; } data[] = { { MAP_WALHALLA, 100, 100 }, // 0=Walhalla { MAP_MORROC, 156, 93 }, // 1=Morroc { MAP_GEFFEN, 119, 59 }, // 2=Geffen { MAP_PAYON, 162, 233 }, // 3=Payon { MAP_ALBERTA, 192, 147 }, // 4=Alberta #ifdef RENEWAL { MAP_IZLUDE, 128, 146 }, // 5=Izlude (Renewal) #else { MAP_IZLUDE, 128, 114 }, // 5=Izlude #endif { MAP_ALDEBARAN, 140, 131 }, // 6=Al de Baran { MAP_LUTIE, 147, 134 }, // 7=Lutie { MAP_COMODO, 209, 143 }, // 8=Comodo { MAP_YUNO, 157, 51 }, // 9=Yuno { MAP_AMATSU, 198, 84 }, // 10=Amatsu { MAP_GONRYUN, 160, 120 }, // 11=Gonryun { MAP_UMBALA, 89, 157 }, // 12=Umbala { MAP_NIFLHEIM, 21, 153 }, // 13=Niflheim { MAP_LOUYANG, 217, 40 }, // 14=Louyang { MAP_NOVICE, 53, 111 }, // 15=Training Grounds { MAP_JAIL, 23, 61 }, // 16=Prison { MAP_JAWAII, 249, 127 }, // 17=Jawaii { MAP_AYOTHAYA, 151, 117 }, // 18=Ayothaya { MAP_EINBROCH, 64, 200 }, // 19=Einbroch { MAP_LIGHTHALZEN, 158, 92 }, // 20=Lighthalzen { MAP_EINBECH, 70, 95 }, // 21=Einbech { MAP_HUGEL, 96, 145 }, // 22=Hugel { MAP_RACHEL, 130, 110 }, // 23=Rachel { MAP_VEINS, 216, 123 }, // 24=Veins { MAP_MOSCOVIA, 223, 184 }, // 25=Moscovia { MAP_PRONTERA, 155, 181 }, // 26=Prontera { MAP_MIDCAMP, 218, 240 }, // 27=Midgard Camp // { MAP_SERENDIPITY, 50, 50 }, // 28=Serendipity // { MAP_VALKYRIE, 180, 30 }, // 29=Valkyrie // { MAP_PRONTERA2, 155, 181 }, // 30=Bloody Prontera }; nullpo_retr(-1, sd); if( map[sd->bl.m].flag.nogo && !pc_has_permission(sd, PC_PERM_WARP_ANYWHERE) ) { clif_displaymessage(sd->fd,msg_txt(995)); // You cannot use @go on this map. return 0; } memset(map_name, '\0', sizeof(map_name)); memset(atcmd_output, '\0', sizeof(atcmd_output)); // get the number town = atoi(message); if (!message || !*message || sscanf(message, "%11s", map_name) < 1 || town < 0 || town >= ARRAYLENGTH(data)) {// no value matched so send the list of locations const char* text; // attempt to find the text help string text = atcommand_help_string( command ); clif_displaymessage(fd, msg_txt(38)); // Invalid location number, or name. if( text ) {// send the text to the client clif_displaymessage( fd, text ); } return -1; } // get possible name of the city map_name[MAP_NAME_LENGTH-1] = '\0'; for (i = 0; map_name[i]; i++) map_name[i] = TOLOWER(map_name[i]); // try to identify the map name if (strncmp(map_name, "walhalla", 3) == 0) { town = 0; } else if (strncmp(map_name, "morocc", 4) == 0 || strncmp(map_name, "morroc", 4) == 0) { town = 1; } else if (strncmp(map_name, "geffen", 3) == 0) { town = 2; } else if (strncmp(map_name, "payon", 3) == 0) { town = 3; } else if (strncmp(map_name, "alberta", 3) == 0) { town = 4; } else if (strncmp(map_name, "izlude", 3) == 0) { town = 5; } else if (strncmp(map_name, "aldebaran", 3) == 0) { town = 6; } else if (strncmp(map_name, "lutie", 3) == 0 || strcmp(map_name, "christmas") == 0 || strncmp(map_name, "xmas", 3) == 0 || strncmp(map_name, "x-mas", 3) == 0) { town = 7; } else if (strncmp(map_name, "comodo", 3) == 0) { town = 8; } else if (strncmp(map_name, "juno", 3) == 0 || strncmp(map_name, "yuno", 3) == 0) { town = 9; } else if (strncmp(map_name, "amatsu", 3) == 0) { town = 10; } else if (strncmp(map_name, "kunlun", 3) == 0 || strncmp(map_name, "gonryun", 3) == 0) { town = 11; } else if (strncmp(map_name, "umbala", 3) == 0) { town = 12; } else if (strncmp(map_name, "niflheim", 3) == 0) { town = 13; } else if (strncmp(map_name, "louyang", 3) == 0) { town = 14; } else if (strncmp(map_name, "new_1-1", 3) == 0 || strncmp(map_name, "startpoint", 3) == 0 || strncmp(map_name, "beginning", 3) == 0) { town = 15; } else if (strncmp(map_name, "sec_pri", 3) == 0 || strncmp(map_name, "prison", 3) == 0 || strncmp(map_name, "jail", 3) == 0) { town = 16; } else if (strncmp(map_name, "jawaii", 3) == 0) { town = 17; } else if (strncmp(map_name, "ayothaya", 3) == 0) { town = 18; } else if (strncmp(map_name, "einbroch", 5) == 0) { town = 19; } else if (strncmp(map_name, "lighthalzen", 3) == 0) { town = 20; } else if (strncmp(map_name, "einbech", 5) == 0) { town = 21; } else if (strncmp(map_name, "hugel", 3) == 0) { town = 22; } else if (strncmp(map_name, "rachel", 3) == 0) { town = 23; } else if (strncmp(map_name, "veins", 3) == 0) { town = 24; } else if (strncmp(map_name, "moscovia", 3) == 0) { town = 25; } else if (strncmp(map_name, "prontera", 3) == 0) { town = 26; } else if (strncmp(map_name, "mid_camp", 3) == 0) { town = 27; } else if (strncmp(map_name, "Serendipity", 3) == 0) { town = 28; } else if (strncmp(map_name, "valkyrie", 3) == 0) { town = 29; } else if (strncmp(map_name, "prontera2", 3) == 0) { town = 30; } The same error happened with "Serendipity, valkyrie and prontera2"
  5. I know this reset NPC allready, I used it. Have this Jobmaster got rebirth bonus stats function? :/
  6. Hey rAthena team On my old Ro Server I've got a problem with the job master and resetter. First problem: The job master didn't give bonus stat points after rebirth. Second Problem: When I resetted my stats, I got lower stats. I noticed it when I handed out the stat points. I need: -Working Job Master without 3rd class function -With 700 Bonus stat points after rebirth -With a function where you can skip rebirth but will not gain extra stat points -A simple and working resetter Thank you x.x
  7. Vielen Dank an ossi0110, er nahm sich die Zeit um meine Lua & Clientprobleme zu fixen... nun läuft alles super ^^
  8. Hi Ich wollte mal nur sagen, dass mein rAthena Acc nicht mehr Duck sondern Lightning Farron heißt :>
  9. Jo ich schreib dich dann an^^
  10. Ja maik, dachte du schreibst mich mal an .. wollte dich nicht nerven oder so^^ Ich möchte jetzt den Server von vorne machen. Die Custom sachen und scripts habe ich aufm flash drive gesichert^^ Hinzu kommt der neue client
  11. Werdio

    @mi

    Ich rate jetzt mal: Da ich einen 2011er client use muss ich die 2011 Lua nehmen oder?
  12. Hallo ossi... danke, dass du dir die Mühe gemacht hast den Client anzugucken. Das der Client "zugemüllt" ist ist mir klar, jedoch wars ned meine Arbeit xD Könntest du mir eventuell zeigen, wie wo und was ich downloaden muss bzw. Ich habe vor nen ganz neuen Client zu erstellen^^ Aber das hat natürlich alles seine Zeit ^^
  13. I can log in with my Admin Account or which Accs I've made before. But if I make a new account in the CP (Control Panel) and then on the Character select after klicking the char me and the new players get rejected lol Please give me an answer :/
  14. Some players on my server currently have a tricky problem. You have created Accs, logged in and when they choose a Charackter from the Charackter select they get the message "Rejected from server (3)." I saw it myself with a test probert Chara. What's the problem and how do I solve the problem?
  15. Einige Spieler auf meinem Server haben zur Zeit ein kniffliges Problem. Sie haben Accs erstellt, sich eingeloggt und bei der Chara auswahl wählen sie ihren Chara aus, bekommen aber danach die Meldung "Rejected from server (3)". Ich habe es selber probert mit einem Testchara. Woran könnte es liegen und wie löse ich das Problem?
  16. If I test some new customs whit the data folder all works. Then I repack it to a .grf to patch. But after patching I get the patch but it doesn't work. PS: I use thor patcher
  17. Werdio

    @mi

    Wo bekomm ich den sh*t her? x.x
  18. Werdio

    @mi

    2011-12-28 geht bei mir iwie nicht. Das öffnet sich immer und dann muss ich es per Task Manager beenden :/
  19. Hi, I want to set this card so that I can put it in the Headgear/Lower/Mid. At the moment it is only insertable in the armor :/ 16503,Naght_Sieger_Card,Naght_Sieger_Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAllStats,( 10 / isequippedcnt (16503) ); },{ bonus2 bSubRace,RC_DemiHuman,( 10 / isequippedcnt (16503) ); },{} What I've to change so that it gets ar Headgear card? x.x
  20. You mean this? 4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ ( isequippedcnt (4403) <= 1) },{ bonus bDelayRate,-30; },{} Is this right?
  21. How I can set that only one kiel card works by every class? I mean what I have to write in the db so that Kiel card isn't multiplicable?
  22. Vending works but autotrade doesn't work lol
  23. Hi, I've got a problem with my costum maintown. I can't use @autotrade there, why? And which mapflag I've to use so that I can use @at in this map?
  24. Thank you, the problem was I writed thana_12 before but I've fixed it allready
×
×
  • Create New...