A question if the name does not exist such as "InventoryContains" there is an option to add this word to the source. My question is should I save these words so that I don`t receive errors in future?
Nice Attempt :bandit:Quote:
Here is my attempt to create an npc that reborns you
Apparently, when i click on the npc and choose the "1st rb" link, it does not make me 1st rb. anyone know what im doing wrong?Code:case 211091:// Rb Adder { if (LinkBack == 0) { Text("Would you like to be reborn? You need to be level 120 or higher to reborn.", CSocket); Link("1st rb", 1, CSocket); Link("2nd rb", 2, CSocket); Link("No thanks", 225, CSocket); End(CSocket); } else if (LinkBack == 1) { if (CSocket.Client.Reborn == 0) if (CSocket.Client.Level >= 120) { Reborn(+1, CSocket); Level(15, CSocket); } else { Text("You are not high enough level", CSocket); Link("Damn!", 255, CSocket); End(CSocket); } } else if (LinkBack == 2) { if (CSocket.Client.Level >= 120) if (CSocket.Client.Reborn == 1) Reborn(+1, CSocket); Level (15, CSocket); } else { Text("You are not high enough level", CSocket); Link("Damn!", 255, CSocket); End(CSocket); } break; }