Jump to content

mrlongshen

Members
  • Posts

    1302
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by mrlongshen

  1. image too small image too small
  2. I want to request a script that every times player kill an mob and mvp. The script will define based on the mob_db.txt and then when player kill normal mob, he will get randomly (0,30) point. and for killing mvp, he will get randomly (30,100) point. With this point, I want to use this script on multiple shop by emistry.
  3. I want to request npc that all player can wrote on its. and the npc will display the message onclick the msg npc. All the message will displayed. Then npc have a function anti flooding. Each player can wrote a msg and have to wait about 10 minutes for write the next msg. GM can delete the msg. Example of the NPC: Name: Player 1 Message: Hai all. What are you doing now ? Name: Player 2 Message: I'm waiting for someone make this script for me xD Like this. Hope someone can make its for me.
  4. nice event !
  5. just backup your database. if same. then all old player account still can be used.
  6. backup your database. move to new hoster. copy all your confg and all your file. move to new hoster. change to new ip. run
  7. ok thx you sir.
  8. ??? you quote Blue Jem and my post. Very confusing... Blue Jem use a function. She call the function with an item. Mine is a npc script that create a custom @randomdisguise command. I can't reproduce your mapserv error, what emulator are you using ? sir, im try using your script. im using hercules..
  9. how to put this script ? how sir ?
  10. I want to request a script for random disguise of monster in mob db. Its for disguise event that handle for gm. The gm will use @randomdisguise than its will automatic select a random mobs. The monster name will Appear on the chat box of gm only. So we can see player guess correct or not.
  11. the script works fine for me. this script not works on hercules.
  12. No error logs? [Error]: npc_parsesrcfile: Unknown map '-' in file 'npc/ro/mapannounce.tx t', line '1'. Skipping line...
  13. iteminfo.lub. you need to compiled it. not iteminfo.lua
  14. i think it a hex client.
  15. wah. nice. i have to release it. thx man~
  16. no. its easy. you have to use iteminfo.lub
  17. Post your script !
  18. LoL
  19. yup. lets wait developer explain to u.
  20. how to add many maps ? i have try your script // ________________________________________________________ // / \ // | _ _ _ _ | // | | |__ _ __ / \ | |_| |__ ___ _ __ __ _ | // | | '_ \| '__/ _ \| __| '_ \ / _ \ '_ \ / _` | | // | | |_) | | / ___ \ |_| | | | __/ | | | (_| | | // | |_.__/|_|/_/ \_\__|_| |_|\___|_| |_|\__,_| | // | | // | brAthena Script | // |--------------------------------------------------------| // | Name of Script: Rotative PVP | // |--------------------------------------------------------| // | Created by: Neko | // |--------------------------------------------------------| // | Version rA/brA: 1.0 | // |--------------------------------------------------------| // | Description: PVP NPC | // | - An NPC that alternates the current PVP map from time | // | to time, the chosen map for rotation are configured by | // | the administrator in the script. The idea is to have | // | multiple pvp rooms, without having to divide the players| // | of your server among them, this way pvps are more crowded| // | and funnier. | // |--------------------------------------------------------| // | Changelog: | // | 1.0 Script Created [Neko] | // |--------------------------------------------------------| // | - Note: | // | *There is a temporary global variable named $@lista$ in| // | this NPC, watch out for global variables with the same | // | name in other NPCs of yours. | // |--------------------------------------------------------| // | Any problem with this NPC please report directly to me.| // \________________________________________________________/ - script PvpRotative -1,{ OnInit: // ====================================== // Configurations *********************** // ====================================== // Which map will be on the rotation? setarray .lista$[0],"guild_vs1","guild_vs2","guild_vs3","guild_vs4","guild_vs5"; // From how much time to time will the maps change? (Standard value 30 minutes/18000000) // WARNING, DO NOT SET VALUES HERE SMALLER THAN 60000 (1 Minute). set .rotatetime, 18000000; // ====================================== set $@lista$, ""+.lista$[0]+""; set .count, getarraysize(.lista$); for( set .@i,0; .@i < .count; set .@i, .@i+1 ){ sleep .rotatetime-60000; mapannounce ""+.lista$[.@i]+"","The PVP map will change in 30 seconds.",8; sleep 30000; mapannounce ""+.lista$[.@i]+"","The PVP map will change in 20 seconds.",8; sleep 20000; mapannounce ""+.lista$[.@i]+"","The PVP map will change in 10 seconds.",8; sleep 10000; if(.lista$[.@i] == .lista$[.count-1]){ mapwarp ""+.lista$[.@i]+"",""+.lista$[0]+"",0,0; set $@lista$, ""+.lista$[0]+""; set .@i,-1; } else{ mapwarp ""+.lista$[.@i]+"",""+.lista$[.@i+1]+"",0,0; set $@lista$, ""+.lista$[.@i+1]+""; } } } prontera.gat,145,188,5 script PvP Keeper 459,{ mes "[PvP Keeper]"; mes "Ready for a bloody"; mes "and glorious battle today?"; mes "Remember no GTB card allowed in PVP room to be fair :)"; if (select("Enter PVP. ["+getmapusers(""+$@lista$+"") +"]:I'm out of potions today.") == 1) { warp ""+$@lista$+"",0,0; announce ""+strcharinfo(0)+" Has Enter PvP Room !! Come on coward! Lets face to face !",bc,0xDF01A5; end; } next; mes "[PvP Keeper]"; mes "Haha!~"; mes "It's okay to be scared!!"; mes "HAHAHAHAHAHA!"; close; OnPCKillEvent: if ( strcharinfo(3) == "guild_vs1" ) announce strcharinfo(0)+ " killed " +rid2name(killedrid); end; } //HERE its not working !
  21. i think its not a problem. but since it renewal. the effect not so much. because renewal more to vit.
  22. i think max is 2b ?
×
×
  • Create New...