Search the Community
Showing results for tags 'survival'.
Found 3 results
-
Hi ... I've finished a series of maps recently, inspired by a horror story theme. The main map is a modern city, freely inspired by Raccon City (RE) with classic places such as the famous Mansion of RE1 and also the raccon city police station. A map made for RO, but the idea was to remove all the medieval elements, to maintain a modern aesthetic, to approach our present world. I've posted here the city and also the mansion ... I recently finished the police department RPD - Raccoon City Police Department B01 first floor with several rooms B02 second floor with several other rooms Now there are 3 huge maps The city, the mansion and the police department RPD MANSION CITY
- 1 reply
-
- residentevil
- survival
-
(and 5 more)
Tagged with:
-
Hello guys, I need help with a script, would be a survival system, to open more customization in ragnarok, I would like to remind you that I am Brazilian, so the script exists sets in Portuguese, but bullshit like "hunger, thirst, sleep , weapon and armor durability " Script Survival this is a npc I used to create a system, if hungry, thirsty, sleep is at 0 he would take the player to prison, the problem is that he even takes my character to prison, but I don't know how I can make the player start with 80's hunger, thirst, sleep, and he ends up being taken to prison after the programming detects that he is at 0, and even in the menu npc I created when using the @menu all status command is at 0. .. below is the menu script Script Menu - Can anyone help me assign 80 hunger, thirst, sleep to the player creating the character?
-
Hi guys, I have a very big and expansive project. First of all I'm Brazilian the script was not 100% translated, interpreted dubarma as "durabilityweapon" and dubarmor as "durabilityarmor" 1-Doubts: I do not know all the doc commands yet, so this is not quite complete function. 2-Npcs function: I added npcs to the outside of the function, and I used the "callfunc" command in the npc to call the function, these npcs would be bed, durability repairer, and in the future would initiate the same "callfunc" 1 hunger, thirst. 3-Error !!! When creating my menu npc, to view the statuses, only everything appears in 0, as if the function had not responded. 4- Menu command I used bindatcmd to when using the @ menu command, I would view your information. And I used the * menu, and even created a labbel for him. scriptlabbel: menu1: mes.@name $; mes "[Hunger]:"+.@hunger; month "[Headquarters]:"+.@headquarters; mes "[Sleep]:"+.@sleep; month "[DubArma]:"+.@dubarma; mes "[DubArmor]:"+.@dubarmadura; close; end; 5- function script function script Sobrevivencia { getcharid(0); if (getcharid(0)){ .@fome = 100; .@sede = 100; .@sono = 100; .@dubarma = 100; .@dubarmadura = 100; setd(".@fome", 100); setd(".@sede", 100); setd(".@sono", 100); setd(".@dubarma", 100); setd(".@dubarmadura", 100); getd(".@fome"); getd(".@sede"); getd(".@sono"); getd(".dubarma"); getd(".@dubarmadura"); end; } else{ if (.@fome <= 1){ delchar(.@fome, 0); end; } } if (.@sede <= 1){ delchar(.@sede, 0); end; } if (.@sono <= 1){ delchar(.@sono, 0); end; } if (.@sono <= 31){ sleep(30000); sleep2(30000); end; } if (.@dubarma <= 1){ @breakweapon; end; } if (.@dubarmadura <= 1){ @breakarmor; end; } attachnpctimer("strcharinfo(0)") initnpctimer(strcharinfo(0)); OnTimer1080000: .@fome = -1; .@sede = -1; .@sono = -4; end; }